-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPROJECT_LANG_1.js
More file actions
31 lines (26 loc) · 1.8 KB
/
PROJECT_LANG_1.js
File metadata and controls
31 lines (26 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Start of script
// Project language file 1
// For: seanpm2001/Learn-JavaScript
// About:
// I chose JavaScript as the first project language file for this project (Seanpm2001/Learn-JavaScript) as this project is about learning the JavaScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.
void main() {
// Writes the message to the console as well as popping up a dialog box, so that the message gets through one way or the other.
console.log ("Project language file 1");
alert("Project language file 1");
console.log ("For: seanpm2001/Learn-JavaScript");
alert("For: seanpm2001/Learn-JavaScript");
console.log ("About:");
alert("About:");
console.log ("I chose JavaScript as the first project language file for this project (Seanpm2001/Learn-JavaScript) as this project is about learning the JavaScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.");
alert("I chose JavaScript as the first project language file for this project (Seanpm2001/Learn-JavaScript) as this project is about learning the JavaScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.");
break;
} // Note for project language files: The languages associated with SNU programming tools are not included as project language files, as there are too many to list.
return main();
break;
}
/* File info
* File version: 1 (2022, Wednesday, April 20th at 2:35 pm PST)
* File type: JavaScript 1.8 source file (*.js)
* Line count (including blank lines and compiler line): 32
*/
// End of script