Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



#javascript #object #string #syntax

The other way to access an individual character on a screen is to treat the string as an array-like object, where individual characters correspond to a numerical index:

 return 'cat' [ 1 ] ; // returns "a" 
If you want to change selection, open document below and click on "Move attachment"

String - JavaScript | MDN
ethod, or extracting substrings with the substring() method. Character access There are two ways to access an individual character in a string. The first is the charAt() method: return 'cat'.charAt(1); // returns "a" <span>The other way (introduced in ECMAScript 5) is to treat the string as an array-like object, where individual characters correspond to a numerical index: return 'cat'[1]; // returns "a" For character access using bracket notation, attempting to delete or assign a value to these properties will not succeed. The properties involved are neither writable nor configurabl


Summary

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Details



Discussion

Do you want to join discussion? Click here to log in or create user.