Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hirookenji #37

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added OptiFine_1.19_HD_U_H8.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions desktop.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[LocalizedFileNames]
OptiFine_1.19_HD_U_H8.jar=@OptiFine_1.19_HD_U_H8,0
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<html>
<head>
<title>Ultimate Courses</title>
<script>
console.log("Hello");
</script>
</head>
<body>
<header class="header">
Expand All @@ -11,5 +14,44 @@
</div>
</header>
<div id="app"></div>
<script>
/*testing
var a = 12;
let b = 11;
const c = 3;

a = 11;
b = 2;
c = 3;

console.log(a, b);
console.log(c);*/
/*simple object practice
let a = {
name: "Mark",
sname: "Kenneth"
};
a.name = "Jessa" //changing
console.log(a.name,a.sname);*/

/* nested object
let myname = {
firstname: "Mark",
surname: "Ferrer",
choice: {
sale: "99 pesos",
sale2: "200 pesos"
}
};
myname.firstname = "Christian";
console.log(myname.firstname,myname.surname);
console.log(myname.choice.sale);*/

/*Ternary Operator
const number = 12;
let result = "The result is: " + (number > 1 ? "Good" : "Bad");
console.log(result);*/
</script>
<p>hello</p>
</body>
</html>
Loading