updateView(); function updateView() { app.innerHTML = /*html*/ `

Bikes R Us

Alle sykkler:
${bikeList()} `; } function bikeList() { let bikeHtml = ''; for (i = 0; i < modell.data.bikes.length; i++) { bikeHtml += /*html*/ ` `; } return bikeHtml; } function addBikeview(){ let addBikeHtml = /*html*/ ` `; }