ストリングへの変換
ストリング・コンテキスト内のブール、整数、または倍精度は、ストリングに変換されます。(ブール値 true および false は、ストリングでないことに注意してください。ブール・データを参照してください。)
'The result is ' + true evaluates to 'The result is true'
FALSE (in an input field that requires a string) converts to 'FALSE'
'The answer is ' + 15 evaluates to 'The answer is 15'
22 (in an input field that requires a string) converts to '22'
('4.5' == .45e1) evaluates to true
14,52 (in an input field that requires a string) evaluates to'14,52'