Skip to content

Instantly share code, notes, and snippets.

@rahulbanerjee26
Created January 12, 2022 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulbanerjee26/9d30a7ac1016a9b857f2bcb641b3500b to your computer and use it in GitHub Desktop.
Save rahulbanerjee26/9d30a7ac1016a9b857f2bcb641b3500b to your computer and use it in GitHub Desktop.
// Declaring object with type Record<string,any>
let user:Record<string,any>={
name: 'Rahul',
email: 'a@g.com'
}
console.log(user.name)
// Rahul
console.log(user.number)
// undefined
user.age = 22
console.log(user.age)
// 22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment