js.1

作者: 小老虎丶冷心 | 来源:发表于2018-05-27 18:16 被阅读0次

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

    1.js的三种输出方式: 1)在控制台树池 console.log("hello.werld"); 2)在页面打印...

网友评论

    本文标题:js.1

    本文链接:https://www.haomeiwen.com/subject/aifijftx.html