From 3b898ff7e02d4ffd56d51add92ff04f2c2038f71 Mon Sep 17 00:00:00 2001 From: Zaynab-agboola Date: Mon, 23 Aug 2021 10:18:01 -0700 Subject: [PATCH 1/2] new changes added --- chessboard.html | 26 ++++++++++++++++++++++++++ index.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 chessboard.html create mode 100644 index.html diff --git a/chessboard.html b/chessboard.html new file mode 100644 index 0000000..ac8f213 --- /dev/null +++ b/chessboard.html @@ -0,0 +1,26 @@ + + + + + + + ChessBoard + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..5513085 --- /dev/null +++ b/index.html @@ -0,0 +1,28 @@ + + + + + + + FizzBuzz Assignment + + + + + \ No newline at end of file From e7e998161334df1853f5d82402d4f8299a5dd729 Mon Sep 17 00:00:00 2001 From: Zaynab-agboola Date: Mon, 23 Aug 2021 10:37:18 -0700 Subject: [PATCH 2/2] add new changes --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 5513085..10cf146 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,9 @@ case j % 3 == 0 && j % 5 == 0: console.log("FizzBuzz") break; - } + default: + console.log(j) + } }