Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Created July 1, 2019 06:28
Show Gist options
  • Save treyhuffine/97e5c1f895e4bd280787ca7eceed2a1f to your computer and use it in GitHub Desktop.
Save treyhuffine/97e5c1f895e4bd280787ca7eceed2a1f to your computer and use it in GitHub Desktop.
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