Created
July 1, 2019 06:28
-
-
Save treyhuffine/97e5c1f895e4bd280787ca7eceed2a1f 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
function EmployeeDetails() { | |
var name: "Mayank"; | |
var age = 30; | |
var designation = "Developer" | |
return { | |
name: name, | |
age: age, | |
designation: designation | |
} | |
} | |
var newEmployee = EmployeeDetails() | |
var userName = newEmployee.name; | |
var userAge = newEmployee.age; | |
var userDesignation = newEmployee.designation; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment