lurt å trykke ctl+s før push

This commit is contained in:
Geir Okkenhaug Jerstad 2024-09-06 14:34:17 +02:00
parent a99883fb2d
commit a1eed2dcc9
6 changed files with 57 additions and 10 deletions

View file

@ -10,7 +10,7 @@
<script>
const app = document.getElementById('app');
const pocketStuff = ['Hat', 'Pencil', ];
const pocketStuff = ['Hat', 'Pencil', 'Dinosaur', 'Showercap', 'Piece of tape'];
view();
function view() {
@ -25,12 +25,12 @@
// controller
function seeWhatsInPocket(){
for (i = 0; i < pocketStuff.lenght; i++){
for (i = 0; i < pocketStuff.length; i++){
console.log(i);
app.innerHTML += /*HTML*/ `
<li>${pocketStuff[i]}</li>
`;
}
};
}
</script>

View file

@ -13,6 +13,7 @@
let htmlCart = '';
const goods = ['TV', 'Computer', 'Gaming Consol', 'Coffee'];
let shoppingCart = [];
let item;
let app = document.getElementById('app');
let tv = 0;
let computer = 0;
@ -22,7 +23,6 @@
// View
updateView();
function updateView(){
let item;
for (let i = 0; i < goods.length; i++){
item = goods[i];
html += /*HTML*/ `
@ -65,9 +65,12 @@
<li>Gaming antall = ${gaming}</li>
<li>Kaffe antall = ${coffee}</li>
</div>
<button onclick="shopMore()">Kjøp mer!!</button>
`;
app.innerHTML += htmlCart;
app.innerHTML = htmlCart;
}
function shopMore(){
location.reload();
}
</script>
</body>