js.1

1.js的三种输出方式:

1)在控制台树池

console.log("hello.werld");

2)在页面打印出:

document.write("hello world");

3)页面弹框:

alert("hello world");

声明一个变量用var。

声明一个常亮用const。尽量大写

声明变量不赋值时,返回到undefined

var uname

console.log(uname);

直接输出未声明的变量时,会报错

console.log(upwd);

变量名可以用数字 字母 和下划线 $

但不能用数字和特殊的符号在前,

正确的有

var name='卤蛋';

var name2='卤蛋';

var name_3='卤蛋';

var $name='卤蛋';

错误的有

var 4name='卤蛋';

var =name='卤蛋';

var /name='卤蛋';

给变量赋值

var uname='1314';

var uname='520';

console.log(uname);

console.log(typeof uname);

你可能感兴趣的:(js.1)