All my labs will be stored here
Link to my first lab repo: https://github.com/grietbeyens/DEV5-LAB1
Human Bingo: https://codesandbox.io/s/wizardly-black-xugulb?file=/js/app.js
Door 1 simpele lijn code kan je via object.entries een object omvormen naar een array. De attributen van het object worden in deze array gestoken als 'mini-arrays'.
// Voorbeeld Object.entries()
const zoo = {
birds: 20,
monkeys: 40,
snakes: 4,
visitors: 200
};
const entries = Object.entries(zoo);
console.log(entries);
// output = [ [ 'birds', 20 ], [ 'monkeys', 40 ], [ 'snakes', 4 ], [ 'visitors', 200 ] ]
Goal of the app: Shows Nasa's picture of the day when the sky is clear
Vercel: https://lab3-api-grietbeyens.vercel.app/
https://lab4-threejs-eight.vercel.app
https://messages-t9bi.onrender.com/ (lukte niet in de api checker 🙁)