javascript string unshift code example
Example: javascript unshift
let array = ["A", "B"];
let variable = "what you want to add";
//Add the variable to the beginning of the array
array.unshift(variable);
//===========================
console.log(array);
//output =>
//["what you want to add" ,"A", "B"]