js知识收集
六种原型数据类型:
JavaScript是函数级作用域(function-level scope)
所有末定义直接赋值的变量自动声明为拥有全局作用域
function doSomething(){
var authorName="山边小溪";
blogName="梦想天空";
alert(authorName);
}
doSomething(); //山边小溪
alert(blogName); //梦想天空
alert(authorName); //脚本错误
6.js中都可以拥有自己的方法,只有null和undefined是无法拥有方法的值。
7. 数字、布尔值、null、和undefined属于不可变类型
8. typeof 返回的是字符串