-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq10.js
More file actions
17 lines (17 loc) · 718 Bytes
/
q10.js
File metadata and controls
17 lines (17 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"use strict";
// 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.
Object.defineProperty(exports, "__esModule", { value: true });
// Favorite Number Program
// Author: Abdul Hannan
// Date: 2023-02-09
function q10() {
let favoriteNumber = 7;
let message = `My favorite number is ${favoriteNumber}.`;
console.log(message);
}
exports.default = q10;
// Call the function
q10();
/*
This is Multi line Comment
*/