🚀 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 💪

Task #1044, Stage #3 - Configurable logger middleware

Time to make our logger configurable. Add the parameter configString to the logger function The config string can include any of the substrings :date, :method or :url. These are the config options which should be split by space, i....

August 15, 2020 · 1 min · Coderslang Master

Task #1044, Stage #4 - Configurable logger middleware

The configurable logger is ready! Add it as a middleware to the server, spin it up and try a couple requests in the browser. Examples: localhost:8080, localhost:8080/about. This task is part of the Full-Stack JavaScript Course....

August 15, 2020 · 1 min · Coderslang Master

Task #105 - Multiply 4

Implement a function multiply in helper.js which multiplies four numbers and returns the product This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 · 1 min · Coderslang Master

Task #1051 - First JSON response

Implement the GET /config route. You should send back the object config from constants.js in JSON format. This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 · 1 min · Coderslang Master

Task #1060 - Max of 3

Implement a function max that takes three numbers and returns the biggest one. This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 · 1 min · Coderslang Master

Task #1062 - Concatenate arrays

Implement the function concatenateArrays in helper.js It should return a new array that has the second array “glued” to the end of the first one Example: concatenateArrays([1,2,3], [1,2,4]) returns [1,2,3,1,2,4]...

August 15, 2020 · 1 min · Coderslang Master

Task #1063 - Concatenate arrays unique

Implement the function concatenateArraysUnique in helper.js It should return a new array that has the second array “glued” to the end of the first one. There should be no duplicates in the result....

August 15, 2020 · 1 min · Coderslang Master

Task #1064 - Factorial

Implement a function factorial in helper.js that returns a factorial of a certain number. Factorial of a number is a product of all positive integers below it. This task is part of the Full-Stack JavaScript Course...

August 15, 2020 · 1 min · Coderslang Master

Task #1065 - Uppercase?

Implement a function hasUpperCaseLetters that checks if there are any upperCase letters in a string. This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 · 1 min · Coderslang Master

Task #1066 - Slow log

Implement a function slowLog that takes a string and prints it to the console after a 3 sec delay Use console.log and setTimeout This task is part of the Full-Stack JavaScript Course...

August 15, 2020 · 1 min · Coderslang Master