UNPKG

myplayaaaaa

Version:

wwww

20 lines (18 loc) 325 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script> "use strict"; x=100;//不带var创建的变量,全局变量 console.log("x",x); function test(){ console.log("x",x); } test(); </script> </head> <body> </body> </html>