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

JavaScript setTimeout, how to delay the function execution

By default, all JavaScript code runs synchronously. This means that the statements are evaluated from top to bottom, one after another. console.log('hello'); console.log('synchronous'); console.log('world'); The strings will be printed to the console in the same order as they appear....

February 9, 2021 · 2 min · Coderslang Master

What is rimraf and how to use it in Node.js

The rimraf command is an alternative to the Linux command rm -rf. It allows you to do deep recursive deletion of files and folders. Global rimraf installation You can install rimraf globally using npm....

February 8, 2021 · 1 min · Coderslang Master

How to disable ESLint for some lines, files or folders

ESLint - is a very convenient tool to control code quality. But, sometimes it’s necessary to disable it. In this tutorial, you’ll learn how to turn off ESLint for certain directories and files....

February 6, 2021 · 2 min · Coderslang Master

4 ways to compare strings in JavaScript

In this short JS tutorial, you’ll learn how to compare strings and see code examples. ...

February 5, 2021 · 2 min · Coderslang Master

How to solve JavaScript tasks in a professional IDE with hints

To become a programmer, you need to code. And not on your smartphone or browser, but in a professional Interactive Development Environment (IDE). One of the best features of CoderslangJS - is practical tasks with automatic verification....

January 31, 2021 · 2 min · Coderslang Master

Algorithms, Abstraction and Pseudocode

“There are 10 types of people, those who understand the binary system and everyone else.” — Unknown Author ...

December 1, 2020 · 11 min · Coderslang Master

Top 3 Reasons Why You Should Never Cheat When Learning to Code

There are many reasons why you should never cheat while learning programming. Cheating can lead to frustration, decreased motivation, and even failure. Wasted effort When you cheat, you are not really learning the material....

November 8, 2022 · 3 min · Coderslang Master

Task #1 - First program

The program is already functional. Just make sure you have set everything up correctly by pressing the Run your code button You should see the message Hello, world! on the screen....

August 15, 2020 · 1 min · Coderslang Master

Task #100 - Questions?

Implement a function questionize in helper.js. It should take a string, add a question mark ("?") to it and return this string as a result. This task is part of the Full-Stack JavaScript Course...

August 15, 2020 · 1 min · Coderslang Master

Task #101 - Sum of two

Implement a function sum in helper.js which should return the sum of two numbers 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