js split string in length code example
Example 1: php remove last character in string
//Remove the last character using substr
$string = substr($string, 0, -1);
Example 2: js array length
let desserts = ["Cake", "Pie", "Brownies"];
console.log(desserts.length); // 3