Skip to content

Jostein Ruen #295

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

Open
wants to merge 1 commit into
base: main
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
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

4 changes: 3 additions & 1 deletion src/assignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ firstNumber = 0

// TODO: 1. Set the value of firstNumber below so the tests pass

firstNumber = 20

// TODO: 2. Change the code below so that the tests pass
const secondNumber = 0 // edit this value
const secondNumber = 42 // edit this value

// do not edit the exported object.
module.exports = {
Expand Down
2 changes: 2 additions & 0 deletions src/declaration.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
//
//
// TODO: 1. Declare the variables firstName and age so that the tests pass
const firstName = 'Jane'
const age = 35

// do not edit below this line
let firstNameExport = ''
Expand Down
Loading