解释:charAt() 方法可返回指定位置的字符
在字符串 “Hello world!” 中,我们将返回位置 1 的字符:
stringObject.charAt(index)
<script type="text/javascript">
var str="Hello world!"
document.write(str.charAt(1))
</script>
以上代码输出的是 e
解释:charAt() 方法可返回指定位置的字符
在字符串 “Hello world!” 中,我们将返回位置 1 的字符:
stringObject.charAt(index)
<script type="text/javascript">
var str="Hello world!"
document.write(str.charAt(1))
</script>
以上代码输出的是 e