Created
September 19, 2024 15:37
-
-
Save dontpaniclabsgists/569cc666374a4e3f102b0e10248408fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let user = { name: "Alice", age: 30 }; | |
function displayUser(user) { | |
console.log(user.name + " is " + user.age + " years old."); | |
} | |
displayUser(user); // Output: Alice is 30 years old. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment