/*
10.	Adding Comments: Choose two of the programs you’ve written, and add at least one comment to each. If you don’t have anything specific to write because your programs are too simple at this point, just add your name and the current date at the top of each program file. Then write one sentence describing what the program does.
*/

const num1: number = 23;
const num2: number = 3;
// this will add the num1 and num2(this comment in typescript)
console.log(num1 + num2);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: