- [ ] Class - [ ] Constructor - [ ] Properties - [ ] Methods The following is an example of a class in TypeScript: ```ts class Employee { empCode: number; empName: string; constructor(code: number, name: string) { this.empName = name; this.empCode = code; } getSalary() : number { return 10000; } } ``` - [ ] Creating an Object of Class ```ts let emp = new Employee(100,"Steve"); ``` Buildin Methods: See: https://www.tutorialspoint.com/javascript/javascript_builtin_functions.htm - [ ] Number Methods - [ ] Boolean Methods - [ ] String Methods - [ ] Array Methods - [ ] Math Methods - [ ] Interface - [ ] Decorators - [ ] ES6-Proxy https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy Global functions: - [ ] parseInt()
The following is an example of a class in TypeScript:
Buildin Methods: See: https://www.tutorialspoint.com/javascript/javascript_builtin_functions.htm
Number Methods
Boolean Methods
String Methods
Array Methods
Math Methods
Interface
Decorators
ES6-Proxy https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy
Global functions: