hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Tuesday, 16 January, 2024 UTC

Remapping Values

Learn how to use a remap function to transform a value from one range to another! ... more


Monday, 23 October, 2023 UTC

Changing Colors in an SVG Element Using CSS and JavaScript

Almost everything inside an inline SVG image is up for modification using CSS and JavaScript. Let's find out how by changing some colors! ... more


Monday, 24 July, 2023 UTC

Stacks in JavaScript

Learn how to use stacks in JavaScript efficiently by exploring the fundamentals, implementation techniques, and real-world applications of this awesome LIFO structure. ... more


Wednesday, 12 July, 2023 UTC

Depth-First Search (DFS) and Breadth-First Search (BFS)

Learn all about how Depth-First Search (DFS) and Breadth-First Search (BFS) will allow you to fully traverse and explore a graph. Yes, you also have a fully functioning JavaScript implementation. ... more


Sunday, 2 July, 2023 UTC

Introduction to the Graph Data Structure

Learn the fundamentals of the graph data structure with this beginner-friendly tutorial. Discover how graphs model relationships, their relationship to Trees, and how to implement one fully in JavaScript. ... more


Monday, 22 May, 2023 UTC

Impact of AI on UI/UX Design with Chloe Barreau ��

With AI gaining increased capabilities around generating visuals and simplifying complex UI and UX tasks, what we see and how we interact with our computing devices is going to be very different in the future. To go deeper into the creative, technical, ... more


Saturday, 22 April, 2023 UTC

Alphabetically Sort Names in an Array

In this exercise, we will learn how to alphabetically sort names in an array by using the built-in Array.sort() method in JavaScript! ... more


Saturday, 15 April, 2023 UTC

Developer Relations and Beyond with Jamie Barton! ��

Developer relations is about building relationships between developers and companies! Who better to discuss this with than Jamie Barton?! ... more


Thursday, 30 March, 2023 UTC

The Present and Future of AI Tools with Ray (aka devbyrayray)

Today, we'll be diving deep with Ray (of devbyrayray fame!) into the fascinating world of AI and discussing how it's shaping the future of the tools we use as developers. ... more


Thursday, 23 March, 2023 UTC

SVG: Converting a Shape to a Path

Learn two approaches for turning your SVG shapes into paths that you can then use as part of your HTML and CSS creations! ... more


Saturday, 10 September, 2022 UTC

Guess the Number

Take a trip down the fun side and learn how to build the classic 'Guess the Number' game using nothing but HTML, CSS, and JavaScript! ... more


Saturday, 6 August, 2022 UTC

A Fun Look at How to Calculate the Value of Pi

Learn three ways to calculate pi (π) with varying degrees of speed and accuracy using JavaScript! ... more


Friday, 22 July, 2022 UTC

Making Sense of "this" by Using Arrow Functions, That, and Bind

We know that "this" points to the current object given the context. What if that doesn't work exactly how we expect? Let's dive deep! ... more


Sunday, 19 December, 2021 UTC

Quickly Adding Many Elements into the DOM

Learn two fast approaches for quickly going from data to a boatload of DOM elements that we can see! ... more


Saturday, 9 October, 2021 UTC

Arrays and Objects

A valiant array exists both as an Array as well as an Object. That can't be good, right? Read on to find out! ... more


Saturday, 9 October, 2021 UTC

A Visual Introduction to Arrays

When it comes to dealing with a list of data, arrays have you covered. Get an introduction to them here. ... more


Saturday, 9 October, 2021 UTC

Making HTTP/Web Requests in JavaScript

Get an introduction to Fetch and XMLHttpRequest to make sending and receiving data a breeze! ... more


Saturday, 9 October, 2021 UTC

Does Learning TypeScript Today Make Sense?

JavaScript has evolved in leaps and bounds over the years. Given that, does learning TypeScript today seem like a good use of time? ... more


Saturday, 9 October, 2021 UTC

Playing Sounds Using the Audio Element

Using plain vanilla-flavored JavaScript, create a simple (and awesome) audio player. ... more


Tuesday, 24 December, 2019 UTC

The Konami Code Challenge

Test your knowledge of timers, arrays, and keyboard inputs by implementing the infamous Konami Code in JavaScript. ... more


Thursday, 12 September, 2019 UTC

Of Pizza, Types, Primitives, and Objects

Learning about the variety of built-in values in JavaScript that you can use is an important part of being awesome. You want to be awesome, don't you? ... more


Thursday, 12 September, 2019 UTC

A Deeper Look at Objects in JavaScript

Learn how to work with the Object object, use Object.create, understand inheritance, and befriend the prototype. ... more


Friday, 1 February, 2019 UTC

Creating Animations in JavaScript

Take full control over your animations by learning how to create them entirely in JavaScript. ... more


Thursday, 10 January, 2019 UTC

The Classy Way to Create Objects in JavaScript

Think properly creating objects in JavaScript is difficult? Use classes to simplify that for you! ... more


Thursday, 10 January, 2019 UTC

Variable and Function Hoisting

Learn about a JavaScript optimization (and its strange consequences!) that promotes your variable and function declarations to the top of their scope. ... more


Thursday, 10 January, 2019 UTC

Detecting Retina and Other High-DPI Displays

Learn how to use some media query trickery to detect the DPI in both CSS and JavaScript. ... more


Thursday, 10 January, 2019 UTC

Setting Up Your React Dev Environment Easily

Learn how to configure Node, Babel, and webpack to efficiently build your React app. ... more


Thursday, 10 January, 2019 UTC

Building a Simple Todo List App in React

Put all of your React skills to the test by learning how to build the classic Todo List app! ... more


Thursday, 10 January, 2019 UTC

Creating a Single-Page App Using React Router

Kick your React skills up a few notches by learning how to use React Router to create a sweet single-page app. ... more


Thursday, 10 January, 2019 UTC

The Component Lifecycle

Learn about the lifecycle methods to get a better understanding of everything your component does...or doesn't do! ... more