console.log(str instanceof String); // logs false, because str is not a String object console.log(new String(str) instanceof String); ...
確定! 回上一頁