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.



Tags
#javascript #object #string #syntax
Question

There are two ways to access an individual character in a string. The first is the

[...]
 return 'cat' . charAt ( 1 ) ; // returns "a" 
Answer
charAt() method:

Tags
#javascript #object #string #syntax
Question

There are two ways to access an individual character in a string. The first is the

[...]
 return 'cat' . charAt ( 1 ) ; // returns "a" 
Answer
?

Tags
#javascript #object #string #syntax
Question

There are two ways to access an individual character in a string. The first is the

[...]
 return 'cat' . charAt ( 1 ) ; // returns "a" 
Answer
charAt() method:
If you want to change selection, open original toplevel document below and click on "Move attachment"

Parent (intermediate) annotation

Open it
There are two ways to access an individual character in a string. The first is the charAt() method: return 'cat' . charAt ( 1 ) ; // returns "a"

Original toplevel document

String - JavaScript | MDN
heir length , to build and concatenate them using the + and += string operators, checking for the existence or location of substrings with the indexOf() method, or extracting substrings with the substring() method. Character access <span>There are two ways to access an individual character in a string. The first is the charAt() method: return 'cat'.charAt(1); // returns "a" 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

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

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