Moja lekcja

 0    22 schede    ksapieszczak
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
charAt()
inizia ad imparare
Returns the character at a specified index (position)
charCodeAt()
inizia ad imparare
Returns the Unicode of the character at a specified index
fromCharCode()
inizia ad imparare
Returns Unicode values as characters
startsWith()
inizia ad imparare
Checks whether a string begins with specified characters
endsWith()
inizia ad imparare
Returns true if a string ends with a specified value
includes()
inizia ad imparare
Returns true if a string contains a specified value
indexOf()
inizia ad imparare
Returns the index (position) of the first occurrence of a value in a string
lastIndexOf()
inizia ad imparare
Returns the index (position) of the last occurrence of a value in a string
search()
inizia ad imparare
Searches a string for a value, or regular expression, and returns the index (position) of the match
match()
inizia ad imparare
Searches a string for a value, or a regular expression, and returns the matches
concat()
inizia ad imparare
Returns two or more joined strings
replace()
inizia ad imparare
Searches a string for a value, or a regular expression, and returns a string where the values are replaced
slice()
inizia ad imparare
Extracts a part of a string and returns a new string
substr()
inizia ad imparare
Extracts a number of characters from a string, from a start index (position)
repeat()
inizia ad imparare
Returns a new string with a number of copies of a string
substring()
inizia ad imparare
Extracts characters from a string, between two specified indices (positions)
split()
inizia ad imparare
Splits a string into an array of substrings
toString()
inizia ad imparare
Returns a string or a string object as a string
toLowerCase()
inizia ad imparare
Returns a string converted to lowercase letters
toUpperCase()
inizia ad imparare
Returns a string converted to uppercase letters
trim()
inizia ad imparare
Returns a string with removed whitespaces
valueOf()
inizia ad imparare
Returns the primitive value of a string or a string object

Devi essere accedere per pubblicare un commento.