Showing Post From JavaScript

Debugger Mode in Node.js - How to Debug Node.js Applications

Not many people are aware that Node.js includes a command-line debugging utility. Debugging Node.js applications is quite simple if you know what to do.

Read more

Check if Strings are Palindromes with JavaScript

A palindrome is a word, phrase, or sequence that reads the same backward as forward. If you’ve learned how to reverse a string (if you haven’t, we wrote an article involving it here), then a straight-forward, easy solution to this problem might come instantly to mind.

Read more

JavaScript: Variables, Values, Types, and Operators

In this article, we’re going to explore how programs remember values, as well as explain what exactly values are. We’ll also explore some logical operators.

Read more

The Birth of JavaScript - How JavaScript Came to Be

Wondering where JavaScript came from? Surprisingly, it was created in 1995, ~27 years ago. Read on to learn how JavaScript came to be.

Read more

Build a NodeJS Password Generator

We’re often told to never use the same password. While that’s true, it’s often one of the most annoying aspects of registering for a new website.

Read more

JavaScript String Methods and How to Use Them

Strings are a vital data type. Just about any project you work on will contain some strings. Let’s explore some string methods in JavaScript.

Read more