Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
git pull? before pushing ass.4
  • Loading branch information
yuk23003 committed Feb 10, 2024
2 parents 9753d0a + 4397384 commit ba9f97a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -131,3 +131,4 @@ dist

.DS_Store

.DS_Store
7 changes: 7 additions & 0 deletions week-01/js/week-01.js
Expand Up @@ -3,11 +3,18 @@
*/

// 1. Change the value to your first name:
main
let firstName = 'Esther';

// 2. Change the value to your age:
let age = 4;

let firstName = 'Simon';

// 2. Change the value to your age:
let age = 72;
main

// 3. Complete the sentence: "I'm taking this course because..."
let whyImTakingThisCourse = "I want to learn how to code and build interactive websites!";

Expand Down
18 changes: 18 additions & 0 deletions week-02/index.html
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
let name = prompt("What is your name?");
let myName = name.toUpperCase();

alert(`Hello ${myName}! Welcome to my Website.`);

</script>

</body>
</html>

0 comments on commit ba9f97a

Please sign in to comment.