References

String.trim()

Leírás

Eltávolítja a helyközöket az string elejéről és végéről.

Szintaxis

trim()

Példa

const greeting = '   Hello world!   '
 
console.log(greeting)
// Expected output: "   Hello world!   ";
 
console.log(greeting.trim())
// Expected output: "Hello world!";
in this article
back to top