The ternary operator ? : is a condensed if/else. Also learn typeof and the in operator.
status = "adult" if age >= 18, else "minor"typeof to check if value is a "string" → isStringin operator to check if "name" exists in user object → hasNameSubmit your code to see test results