Exercise 1: Alert Hello World!
const message = 'Hello World!'; console.log(message);
Exercise 2: Fix the errors
const num1: number = '3';
num1 = num1 + 7; // 10
console.log(num1);
// Do not change the type of the assignment value
let employeeId: string = 'MF1001';
employeeId = 1001;
console.log(employeeId);
let employee: {
name: string,
id: number
};
employee = {
name: 123,
id: xyz
};
// Create a employee object type array and push employee data to the array
// let employeeList = .................