JS系统教程三-type conversion

如何将数据转换成不同类型

const name = 'Jony';
const age = 30;

const person = {
  name:'brad',
  age:55
}

let amount = 100;
// change string to number 
//////////////////////////////
// amount = parseInt(amount); //
// const num = 99.5; 
// amount = parseFloat(num);  会显示小数 
// 如果小数是parseFloat 函数
//////////////////////////////
// amount = +amount;
// amount = Number(amount);


//convert  number to string 
//amount 是 number 为什么会变成obj 
// amount = amount.toString();
// amount = String(amount);

//convert number to boolean 
amount = Boolean(amount);

console.log(amount,typeof amount);

//把文本转化成数字的时候 会显示NaN,也就是not a number  但是typeof 还是number  
//任何通过不是通过数字执行的数学操作 结果都是NaN 

Check Also

获取input的keyup或者input状态只获取一次值避免无限重复值

$(document).rea …

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注