This commit is contained in:
Philippe Torrel
2026-06-26 15:05:09 +02:00
parent d24e33bfd2
commit 8b439649b5
9 changed files with 349 additions and 0 deletions

View File

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