var str="Hello world!" document.write("The first character is: " + str.charAt(0) + "<br />") document.write("The second character is: " + str.charAt(1) + "<br />") document.write("The third character is: " + str.charAt(2))
</script>
</body> </html>
结果:
The first character is: H The second character is: e The third character is: l