CristhGunners - Desarrollador de Software

Cristhofer Andana

Desarrollador de Software

Eliminar espacios en blanco de un string en Javascript

js

septiembre 30, 2022
const hello = "     Hello World!    ";

hello.trim();       // return "Hello World!"
hello.trimStart();  // return "Hello World!    "
hello.trimEnd();    // return "     Hello World!"