mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
679 B
679 B
Maximus ⚔️
Multiple arguments
Functions can take multiple arguments, example:
console.log('first', 2) // both arguments will appear in your console
Values are simply separated by a ,
comma, like values in an Array.
Instructions
We provide you with 3 users objects assigned in their respective variables
martin
, kevin
, and stephanie
.
- Declare an
oldestAge
variable that use theMath.max
on theirage
property to find the oldest age.
Hint: Maybe find out how the Math.max function works before starting this exercise.