Task #151 - Short words filter
Implement the function isShortWord(s). It should take a string and return true if the string meets both of the following conditions: The length of the string is less than 10 characters....
Implement the function isShortWord(s). It should take a string and return true if the string meets both of the following conditions: The length of the string is less than 10 characters....
Fix the code. Access should only be given to the users with the admin role. Make sure that the user name is logged to the screen. This task is part of the Full-Stack JavaScript Course...
Implement the function isKeyPresent(obj, key) which checks if the object has a certain field 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...
Implement a function startsWith(start). It should accept a single parameter start and return a function that takes a string s and checks if s starts with start. start is a string that consists of one or more characters...
Implement the function delayedLog(s, n). It should print the string s to the console after n seconds. 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...
Fix the function startProgressBar Expected behavior: The function should display the progress bar on the screen and move it forward each delay ms. The interval should be cleared once the progress bar is full....
Implement the function setEasyTimout(func, time). It should execute the function func after the specific amount of time. time - is an object with hours, minutes, seconds. Examples in solution.js. This task is part of the Full-Stack JavaScript Course...
Implement the function startCountdown(n) using setInterval. It should print to the console all number from n to 1 and then the string GO!. The delay between calls to the console.log should be 0....
Fix the function sum is helper.js. When imported into solution.js it should return the sum of two numbers Don鈥檛 use curly braces and return statement This task is part of the Full-Stack JavaScript Course...
Fix the function getTestData is helper.js. It should return the object {name: 'Jane', age: 22} without using the return keyword. This task is part of the Full-Stack JavaScript Course...