<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // function a() { // alert(1) // } // function a() { // alert(2) // } // a(); // 覆盖 // function a() { // alert(1) // } // let a = function () { // alert(1) // } // 报错 </script> </body> </html>