You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
541 B
12 lines
541 B
// endsWith: it takes a substring as an argument and it checks if the string starts with that specified substring. It returns a boolean(true or false).
|
|
// string.endsWith(substring)
|
|
let string = 'Love is the best to in this world'
|
|
console.log(string.endsWith('world')) // true
|
|
console.log(string.endsWith('love')) // false
|
|
console.log(string.endsWith('in this world')) // true
|
|
|
|
let country = 'Finland'
|
|
console.log(country.endsWith('land')) // true
|
|
console.log(country.endsWith('fin')) // false
|
|
console.log(country.endsWith('Fin')) // false
|