function createCalculatorButtons(){
const buttons_row = 6;
let added_buttons= 0;
calculator_buttons.forEach(button =>{
if(added_buttons % buttons_row == 0){
input_element.innerHTML += '<div class="row"></div>';
}
const row = document.querySelector(".row:last-child");
row.innerHTML += '<button id = "${button.name}">${button.symbol}</button>';
added_buttons++;
})
the buttons are there but with the msg ${button.symbol} instead of the actual symbol