ES6 字符串、數值與布爾值、函數參數的解構賦值

const str="hello world"; const [a,b,...oth]=str;     字符串分割爲數組的三種方法: const str="hello world"; const [...str1]=str; const str2=[...str]; const str3=str.split("");     提取字符串的屬性和方法: const str="hello world
相關文章
相關標籤/搜索