xxxxxxxxxx
<html>
<body>
<script>
let str = ' Spaces at beggining of text will be removed';
// هنا قمنا بعرض عدد أحرف النص قبل حذف المسافات الفارغة من أوله
document.write(`Total characters before = ${str.length} <br>`);
// هنا قمنا بحذف المسافات الفارغة من أول النص
str = str.trimStart();
// هنا قمنا بعرض عدد أحرف النص بعد حذف المسافات الفارغة من أوله
document.write(`Total characters after = ${str.length}`);
</script>
</body>
</html>