Bootstrap

在JavaScript中将值转换为字符串的5种方法

原文: 5 Ways to Convert a Value to String in JavaScript


如果您关注Airbnb的样式指南,首选方法是使用“String()”👍

它也是我使用的那个,因为它是最明确的 - 让其他人轻松地遵循你的代码的意图🤓

请记住,最好的代码不一定是最聪明的方式,它是最能将代码理解传达给他人的代码💯

const value = 12345;
// Concat Empty String
value + '';
// Template Strings
`${value}`;
// JSON.stringify
JSON.stringify(value);
// toString()
value.toString();
// String()
String(value);
// RESULT
// '12345'

比较5种方式

好吧,让我们用不同的值测试5种方式。以下是我们要对其进行测试的变量:

const string = "hello";
const number = 123;
const boolean = true;
const a
;