「JavaScript」加算演算子で数値を文字列に変換するサンプル
書式
数値 +"文字列"
「+演算子」を寮して数値を文字列に変換します。
使用例
const tt = 123 + "abc"; console.log(tt); console.log(typeof(tt));
実行結果
> “123abc"
> “string"
Coding Changes the World
書式
数値 +"文字列"
「+演算子」を寮して数値を文字列に変換します。
使用例
const tt = 123 + "abc"; console.log(tt); console.log(typeof(tt));
実行結果
> “123abc"
> “string"