generated from seanpm2001/Template_Journaling_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_3.js
24 lines (24 loc) · 1.44 KB
/
PROJECT_LANG_3.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Start of script
// I chose JavaScript as the third project language for this project (Seanpm2001/LifeArchive/Extras/ClockTree) as it is one of the 3 languages used in the sites development (as far as I can tell)
class projectLanguageFileThree() {
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 3");
alert("Project language file 3");
console.log ("For: Seanpm2001/LifeArchive/Extras/ClockTree)");
alert("For: Seanpm2001/LifeArchive/Extras/ClockTree)");
console.log ("About:");
alert("About:");
console.log ("I chose JavaScript as the third project language for this project (Seanpm2001/LifeArchive/Extras/ClockTree) as it is one of the 3 languages used in the sites development (as far as I can tell)");
alert("I chose JavaScript as the third project language for this project (Seanpm2001/LifeArchive/Extras/ClockTree) as it is one of the 3 languages used in the sites development (as far as I can tell)");
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 (Monday, 2021 November 29th at 12:34 pm)
* File type: JavaScript 1.8 source file (*.js)
* Line count (including blank lines and compiler line): 25
*/
// End of script