このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の str 関数を説明します。
str()
説明文
ブール、文字列、または数値をその文字列表現に変換します。値の配列が渡されると、同じ長さの文字列の配列が返されます。
構文
str(n)
パラメタ
- n
String | Boolean | Number | Array:変換する値
戻り値
String:値の文字列表現
例1
print(str('10 ')); // '10'
print(str(10.31)); // '10.31'
print(str(-10)); // '-10'
print(str(true)); // 'true'
print(str(false)); // 'false'
print(str([true, '10 .3 ', 9.8])); // ['true', '10.3', '9.8']
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。