JavaScript 基本資料轉換型態
  1. 字串轉換數字(string to number)
  2. x='32.49';  
    1. x=+x;  
    2. x*=1;  
    3. x=Number(x);  
    4. x=parseInt(x);      <== 請參考內定函數。
    5. x=parseFloat(x);      <== 請參考內定函數。
    6. x=0+x;      <== 常犯錯的用法。
  3. 數字(number)
  4. x=63.01;  
    1. x=x+"";  
    2. x=String(x);  
    3. x=x.toString();  
  5. 布林(boolean)
  6. 字串轉布林
    x="true";
    1. Boolean(x)  
    2. x=="true"  

    布林轉字串
    x=true;
    1. String(x)  
    2. x.toString();  
    3. x+"";  
    4. JSON.stringify(x);  
    各種資料布林值認定
    資料型態認定方式
    Stringtrue:非空字串。
    false:空字串。
    Numbertrue:非 0 數字。
    false:0
    nullfalse
    undefined編譯錯誤
    物件使用物件本身的 toString。
    例如:
    x=29;
    x.toString();
    若物件本身無 toString 函數,則可使用 Bollean() 試試。