js从0开始学习

js - 05 JS数据类型-字符串数据类型

2019-11-04  本文已影响0人  大怪兽迪迦

字符串数据类型

所有用单引号、双引号、反引号(撇 ES6模版字符串)抱起来的都是字符串

把其他类型值转换为字符串


[val].toString()

let a = 12;
console.log(a.toString())       // => '12'
console.log((NaN).toString())   // => 'NaN'
console.log(ture.toString())    // => 'true'
console.log(false.toString())   // => 'false'
console.log(null.toString())    // => Uncaught TypeError:能用,但禁止
console.log(undefined.toString())    // => Uncaught TypeError:能用,但禁止

null/undefinned .toString() 能使用,但是会报错,其转换为字符串的结果就是'null'/'undefinned'

字符串拼接

console.log('10' + 10)      // => 1010
console.log('10' - 10)      // => 0
console.log('10px' - 10)    // => NaN

-- 计算console.log(a)
let a = 10 + null + true + [12] + undefined + 'xxx' + null + [] + 10 + false

解:10 + null => 10 + 0 => 10
    10 + true => 10 + 1 => 11
    11 + [] => 11 + '' => '11'
    '11' + undefined => '11undefined'
    ……
    解得: 
  console.log(a) => '1112undefinedxxxnull10false'
上一篇下一篇

猜你喜欢

热点阅读