js复习第一天
// 只有 '0、NaN、null、undefined、空字符串' 五个值会变为布尔的false,其余都是true
console.log(typeof typeof typeof [12,123])数组对象原型
// => typeof typeof "object"
// => typeof "string"
// => string
parseInt不要(.)以后的小数
parseFloat(俗称浮点数要 . 以后的小数)
2024-01-14 13:03:34