在 JavaScript 中,String charAt()方法用於檢索字符串中指定索引位置處的字符。它將位於指定索引處的字符作為新字符串返回。
用法:
string.charAt(index)
string
:從中檢索字符的原始字符串。index
:要檢索的字符的索引位置。它必須是 0 到 0 之間的整數string.length - 1
.
例子:在這裏,charAt()
方法被調用str
索引為的字符串2
。這將檢索索引處的字符2
,這是字符串中的第三個字符(因為索引從0
)。由此產生的字符"l"
返回並記錄到控製台。
Javascript
const str = "Hello, World!";
const charAtIndex2 = str.charAt(2);
console.log(charAtIndex2); // Output: "l"
輸出
l
相關用法
- JavaScript console.log()用法及代碼示例
- JavaScript console.assert()用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math sinh()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math asin()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math atan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math max()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math sign()用法及代碼示例
- JavaScript Math log()用法及代碼示例
- JavaScript Math log2()用法及代碼示例
- JavaScript Math log10()用法及代碼示例
- JavaScript Math log1p()用法及代碼示例
- JavaScript Math exp()用法及代碼示例
注:本文由純淨天空篩選整理自amanv09大神的英文原創作品 What is charAt() Method in JavaScript ?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。