keywords: type conversion , type coercion , ToString , JSON ... let a = 99; let b = a + ''; // '99' 隱含的強制轉型 let c = String(a); ...
確定! 回上一頁