-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQ10.js
More file actions
24 lines (22 loc) · 835 Bytes
/
Copy pathQ10.js
File metadata and controls
24 lines (22 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* *****************************************************
*
* File Description: Problem 10
* panacloud-modern-global-apps/typescript-node-projects
*
* 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.
*
* created by: abkh
* modified on: 2 October 2022
*
*/
// This Program stores my favaourite number in a variable
// and then displays it withing a message on the terminal
// using the console.log()
var vFavouriteNumber = "23"
console.log("My favourite number is %s",vFavouriteNumber);