将字符串转换为数字
const str = '404'; console.log(+str) // 404;
将数字转换为字符串
const myNumber = 403; console.log(myNumber + ''); // '403'