Created
September 24, 2022 09:37
-
-
Save buymed-hoangpham/6902b15f53e4581424ab9a10f384754e to your computer and use it in GitHub Desktop.
Bài 1
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
| const name = "Francis", lastname = "Jones", age = 23; | |
| let obj; | |
| function createObject(name,lastname,age){ | |
| return obj = { | |
| name, | |
| lastname, | |
| age, | |
| } | |
| } | |
| console.log(createObject(name,lastname,age)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment