ストリングへの変換

ストリング・コンテキスト内のブール、整数、または倍精度は、ストリングに変換されます。(ブール値の 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'
14,52 (in an input field that requires a string) evaluates to'14,52'