Files
Philippe Torrel 8b439649b5
2026-06-26 15:05:09 +02:00

18 lines
212 B
JavaScript

const data = {
weight: 70,
drinks: [
{
type: 'beer',
amount: 1,
},
{
type: 'wine',
amount: 1,
},
],
};
// Your code here
console.log(decideOnDrivingAbility(data));