Last active
December 4, 2017 19:29
-
-
Save goenning/a4caf5f31c22716dcdbd0e5814313502 to your computer and use it in GitHub Desktop.
so-40421100
This file contains 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
class Employee { firstname: string; lastname: string; } | |
let employee: Employee = JSON.parse(`{ "firstname": "Jon", "lastname": "Snow" }`); | |
console.log(employee); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment