JavaScript String charAt()
charAt 可以用來取得字串中特定位置的字元。
語法:
str.charAt(index)
參數 index 代表位置,從 0 開始算。
用法:
var str = 'hello world';
// 輸出 'e'
console.log(str.charAt(1));
// 輸出 'h'
console.log(str.charAt(0));
charAt 可以用來取得字串中特定位置的字元。
語法:
str.charAt(index)
參數 index 代表位置,從 0 開始算。
用法:
var str = 'hello world';
// 輸出 'e'
console.log(str.charAt(1));
// 輸出 'h'
console.log(str.charAt(0));