Moja lekcja

 0    22 tarjetas    ksapieszczak
descargar mp3 imprimir jugar test de práctica
 
término definición
charAt()
empezar lección
Returns the character at a specified index (position)
charCodeAt()
empezar lección
Returns the Unicode of the character at a specified index
fromCharCode()
empezar lección
Returns Unicode values as characters
startsWith()
empezar lección
Checks whether a string begins with specified characters
endsWith()
empezar lección
Returns true if a string ends with a specified value
includes()
empezar lección
Returns true if a string contains a specified value
indexOf()
empezar lección
Returns the index (position) of the first occurrence of a value in a string
lastIndexOf()
empezar lección
Returns the index (position) of the last occurrence of a value in a string
search()
empezar lección
Searches a string for a value, or regular expression, and returns the index (position) of the match
match()
empezar lección
Searches a string for a value, or a regular expression, and returns the matches
concat()
empezar lección
Returns two or more joined strings
replace()
empezar lección
Searches a string for a value, or a regular expression, and returns a string where the values are replaced
slice()
empezar lección
Extracts a part of a string and returns a new string
substr()
empezar lección
Extracts a number of characters from a string, from a start index (position)
repeat()
empezar lección
Returns a new string with a number of copies of a string
substring()
empezar lección
Extracts characters from a string, between two specified indices (positions)
split()
empezar lección
Splits a string into an array of substrings
toString()
empezar lección
Returns a string or a string object as a string
toLowerCase()
empezar lección
Returns a string converted to lowercase letters
toUpperCase()
empezar lección
Returns a string converted to uppercase letters
trim()
empezar lección
Returns a string with removed whitespaces
valueOf()
empezar lección
Returns the primitive value of a string or a string object

Debes iniciar sesión para poder comentar.