-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
97 additions
and
112 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
async function sprintChallenge5() { | ||
// 👇 WORK WORK BELOW THIS LINE 👇 | ||
|
||
const footer = document.querySelector('footer') | ||
const currentYear = new Date().getFullYear() | ||
footer.textContent = `© BLOOM INSTITUTE OF TECHNOLOGY ${currentYear}` | ||
|
||
// 👇 WORK WORK BELOW THIS LINE 👇 | ||
|
||
|
||
// 👆 WORK WORK ABOVE THIS LINE 👆 | ||
} | ||
|
||
// ❗ DO NOT CHANGE THE CODE BELOW | ||
sprintChallenge5() | ||
// This try/catch is needed to expose the sprintChallenge5 function to the test runner | ||
try { module.exports = { sprintChallenge5 } } catch { | ||
// module.exports does not exist in the browser | ||
// so this is always a crash in Chrome | ||
} | ||
// ❗ DO NOT CHANGE THE CODE BELOW | ||
// ❗ DO NOT CHANGE THE CODE BELOW | ||
// ❗ DO NOT CHANGE THE CODE BELOW | ||
if (typeof module !== 'undefined' && module.exports) module.exports = { sprintChallenge5 } | ||
else sprintChallenge5() |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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