JavaScript - 基础 - 1

2019-01-10  本文已影响0人  iWander

之前有点HTML、CSS的基础,标签啊、样式啥的,随用随查吧,所以直接开始JavaScript的学习了。

用法

脚本需要放到<script></script>标签中间。脚本可被放置在 HTML 页面的 <body> 和 <head> 部分中。

输出

数据类型

值类型(基本类型)

引用数据类型

JavaScript 字母大小写比较敏感

JavaScript typeof, null, 和 undefined

typeof "John"                 // 返回 string 
typeof 3.14                   // 返回 number
typeof NaN                    // 返回 number
typeof false                  // 返回 boolean
typeof [1,2,3,4]              // 返回 object
typeof {name:'John', age:34}  // 返回 object
typeof new Date()             // 返回 object
typeof function () {}         // 返回 function
typeof myCar                  // 返回 undefined (如果 myCar 没有声明)
typeof null                   // 返回 object
var person;                  // 值为 undefined(空), 类型是undefined
typeof undefined             // undefined
typeof null                  // object
null === undefined           // false
null == undefined            // true

类型转换

这里有些知识点需要特殊对待比如typeof、constructor属性

上一篇 下一篇

猜你喜欢

热点阅读