标签:abstract 大小 针对 3.1 依赖性 除法 interface this head
<body id='bd' onload="body.style.backgroundColor='cyan'">
</body>
<body id ='bd'>
<style>
bd.style.backgroundColor='cyan';
</style>
</body>
</body>下 或者</body>上
,最终被解析在</body>
上方<head>
标签底部,一般应用于依赖性JS库html文件:
<script src='js/test.js'></script>
js文件:
bd.style.backgroundColor='cyan';
<script src="js/02.js">
alert(123)
</script>
拥有src的外联script标签,会自动屏蔽标签内部的代码块
//单行注释
/*
多行注释
*/
保留字:
abstract | arguments | boolean | break | byte |
case | catch | char | class* | const |
continue | debugger | default | delete | do |
double | else | enum* | eval | export* |
extends* | false | final | finally | float |
for | function | goto | if | implements |
import* | in | instanceof | int | interface |
let | long | native | new | null |
package | private | protected | public | return |
short | static | super* | switch | synchronized |
this | throw | throws | transient | true |
try | typeof | var | void | volatile |
while | with | yield |
var num = 10; //无块级作用域变量
num = 10; //全局变量
let num = 10; //局部变量
const NUM=10; //常量 常量名全大写 不允许修改
注:ES5标准下无块级作用域,只有方法可以产生实际的局部作用域
// 方法的自调用,就会产生一个局部的作用域
(function () {
var x=10;
y=20;
})()
ES6有块级作用域
alert() //一个弹出框只能弹出一条消息,多个值,后面的值会被忽略
confirm() // 确认框 有返回值, true | false
prompt() //输入框 确定为输入值,取消为null
typeof(100)
数值范围:-5e324 ~ 1.7976931348623157e+308
超过范围,会显示为 Infinity(正无穷) 或 -Infinity(负无穷),不像其它语言,JS的数字类型包含了小数。
特殊的Number值 NaN:表示Not A Number,非数字类型
和任何值都不相等
与任何值运算,结果还是NaN
isFinite() //函数判断是否在范围内
isNaN() //函数 判读是否是 NaN
声明方式:
双引号
单引号
模板字符串(ES6新增)
content = `
打扎好,我寺${username}.
是兄弟,就来砍我
今晚八点,不见不散
`
//多行,${}方式 嵌入变量。 传统方式变量字符串连接必须用字符串连接符
var a = true;
console.log(a, typeof a);
undefined 表示'缺少值'
var c = undefined
console.log(c,typeof c);
var m = function(){
console.log(m,typeof m);
}
var obj = {};
console.log(obj,typeof obj);
obj = new Object();
//console.log(obj,typeof obj); //对象类型判断一般用instanceof
console.log(obj instanceof Object);
var o = null;
//console.log(o,typeof o);
//空的判断用==
console.log(o == null);
o = new Array(1,2,3,4,5);
//console.log(o,typeof o);
//判断
console.log(o instanceof Array);
o = new Date();
console.log(o,instanceof Date);
o = new ReExp();
console.log(o, instanceof ReExp);
//1.num,bool => str //String|toString
var a = 10;
var b=true;
var c =String(a);
c = a.toString();
//2.bool,str => num //Number |+?
var aa =true;
var bb = '10';
var cc = Number(aa);
cc = +aa; //'1' number
cc = +bb; //'10' number
//针对字符串 //parseFloat|parseInt
cc = parseFloat('3.14.15.16');
console.log(cc,typeof cc); //3.14 number
cc = parseInt('10.35abc');
console.log(cc,typeof cc); //10 number
//字符串以非数字开头,结果为NaN
//1.非数字类型
//2.不与任何数相等,包含自己
//3.通过isNaN()进行判断
var res = parseInt('abc10def');
console.log(res,isNaN(res));
5 + null //5
'5' +null //'5null'
'5' +1 //'51'
'5' -1 //4
注:++/--在前先自身运算,再做其他运算,++/--在后先做其他运算,再自运算
//a = 5
var res = a++;
console.log('res:'+res+'a:'+a); //5 6
//a =5
var res = ++a;
console.log('res:'+res+'a:'+a); //6 6
前提:x=5,y=5
运算符 | 例子 | 等同于 | 运算结果 |
---|---|---|---|
= | x=y | 5 | |
+= | x+=y | x=x+y | 10 |
-= | x-=y | x=x-y | 0 |
*= | x*=y | x=x*y | 25 |
/= | x/=y | x=x/y | 1 |
%= | x%=y | x=x%y | 0 |
前提:x=5
运算符 | 描述 | 比较 | 结果 |
---|---|---|---|
== | 等于 | x=="5" | true |
=== | 绝对等于 | x==="5" | false |
!= | 不等于 | x!="5" | fales |
!== | 不绝对等于 | x!=="5" | true |
> | 大于 | x>5 | false |
< | 小于 | x<5 | false |
>= | 大于等于 | x>=5 | true |
<= | 小于等于 | x<=5 | true |
前提:n=5
运算符 | 描述 | 例子 | 结果 |
---|---|---|---|
&& | 与 | x=n>10&&++n | x=false,n=5(短路) |
|| | 或 | x=n<10||n-- | x=true,n=5(短路) |
! | 非 | x=!n | x=false,x=5 |
&&
运算,有假即假,前面有假,后面不会被执行,称为短路||
运算,有真,即真,前面为真,后面不执行 短路expression ? sentence1 : sentence2
当expression的值为真时执行sentence1,否则执行 sentence2
var tq = prompt('天气(晴|雨)')
var res =tq =='晴'?'今天天气挺好':'请假回家';
console.log(res);
?:
typeof
运算符 判断操作数类型delete
运算符 删除对象属性或者数组元素void
运算符 忽略操作数的值,
+
标签:abstract 大小 针对 3.1 依赖性 除法 interface this head
原文地址:https://www.cnblogs.com/mangM/p/9774624.html