0 / 60 seg.

What value is obtained with the following code?

let age = 18;
let category = age >= 18 ? 'adult' : 'minor';
console.log(category);