Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javascriptのjoin()とtoString()の正確な違いを教えてください。valueOf()いつ、どのような状況でそれらを使用する必要がありますか?
join()
toString()
valueOf()
toStringArrays だけでなく、すべてのオブジェクトに見られるメソッドです。
toString
Array
joinオブジェクトのすべての要素を文字列に変換Arrayし、セパレータを使用して結合することができます。s と同じように動作しtoStringますArrayが、セパレーターを指定することもできます:
join
var classes = ["first", "second"]; classes.join(" "); // "first second"