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.
7 lines
266 B
7 lines
266 B
5 years ago
|
//trim(): Removes trailing space in the beginning or the end of a string.
|
||
|
let string = ' 30 Days Of JavaScript '
|
||
|
console.log(string) //
|
||
|
console.log(string.trim(' ')) //
|
||
|
let firstName = ' Asabeneh '
|
||
|
console.log(firstName)
|
||
|
console.log(firstName.trim()) //
|