📌  相关文章
📜  如何删除字符串 js 中的尾随空格 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:17.756000             🧑  作者: Mango

代码示例1
let string = "        Your Text           ";
string = string.trim(); // "Your Text"
// This gets rid of both starting and trailing whitespace