首页 > 其他 > 详细

String 数据类型转换

时间:2020-07-28 22:13:45      阅读:71      评论:0      收藏:0      [点我收藏+]

字符串:单双引号引起来的零个或多个字符

从input中获取的,全部是字符串
<input type="text" id="txt">
<button id="btn">按钮</button>
var txt = document.getElementById(‘txt‘);
var btn = document.getElementById(‘btn‘);

// 从input中获取的,全部是字符串
btn.onclick = function () {
    var val = txt.value;
    console.log(val, typeof val);
}

String的数据类型转换

  • String(变量) 可以将任何数据类型转成字符串

  • 变量.toString() 同String(),只不过,不能转null和undefined
var a = 10;
var b = String(a);
console.log(b, typeof b);
console.log(a, typeof a); // 不改变原变量

console.log(String(‘ab‘)); // ‘ab‘
console.log(String(true)); // ‘true‘
console.log(String(false)); // ‘false‘

console.log(String(null)); // ‘null‘
console.log(String(undefined)); // ‘undefined‘

// --------------------------
// 一般不用来转引用类型
console.log(String({})); // ‘[object Object]‘
console.log(String([1, 2, 3])); // ‘1,2,3‘
console.log(String([])); // ‘‘

// ----------------------------
var n = null;
// console.log(n.toString()); // 报错

var m = undefined;
// console.log(m.toString()); // 报错

 

String 数据类型转换

原文:https://www.cnblogs.com/ximenchuifa/p/13392410.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!