[Verifying my keyoxide cryptographic key: https://keyoxide.org/E5655B7E3F856C237DF6330D23F5ED613A1E4DF0]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript"> | |
class Student{ | |
constructor(firstName, lastName) { | |
this.firstName = firstName; | |
this.lastName = lastName; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang='en-US'> | |
<head> | |
<title>Random Name Generator</title> | |
</head> | |
<script type='text/javascript'> | |
var MaleName = ['Jason', 'Michael', 'Noah', 'Liam', 'Benjamin','Bill','Justin','Ted','Joe','Steve','Chris','Charles','Craig','Duane','Sean','Chuck','Anthony','Tony']; | |
var FemaleName = ['Emma', 'Olivia', 'Ava', 'Isabelle', 'Mia','Lisa','Emily','Shannon','Cyndy','Amber','Shonna','Marsha','Anna','Meghan','Sunny','Emma']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>The Library</title> | |
</head> | |
<script type="text/javascript"> | |
class LibraryItem{ | |
// add properties to this that hold the itemType and the title.. |
OlderNewer