hello.js

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

NEW !!!

Tuesday, 12 May, 2020 UTC

Airtable API Tutorial with cURL and JavaScript

null ... more


Tuesday, 5 May, 2020 UTC

Formattings String with JavaScript Padstart and Padend

null ... more


Friday, 10 April, 2020 UTC

optional?.chaining in JavaScript 2020 (ECMAScript 2020)

null ... more


Tuesday, 7 April, 2020 UTC

?? JavaScript's Null Coalescing Operator

null ... more


Monday, 27 January, 2020 UTC

Build a Weight Tracker App with Node.js and PostgreSQL

null ... more


Monday, 25 November, 2019 UTC

Javascript End-to-End Testing With Testim: Intro With Examples

null ... more


Thursday, 14 November, 2019 UTC

Why You Can't Return Parallel JSX Elements. The Hack!

null ... more


Thursday, 24 October, 2019 UTC

Proxies and Generators in JavaScript

null ... more


Friday, 20 September, 2019 UTC

Goodbye Javascript! Build an Authenticated Web App in C# with Blazor + ASP.NET Core 3.0

... more


Friday, 9 August, 2019 UTC

Building My First Svelte App: Thoughts and Impressions

... more


Saturday, 3 August, 2019 UTC

Blazing Fast WordPress Sites With Gatsby

... more


Wednesday, 31 July, 2019 UTC

Linting and Formatting with ESLint in VS Code

... more


Saturday, 27 July, 2019 UTC

JavaScript Glossary

... more


Saturday, 27 July, 2019 UTC

React Starters

... more


Thursday, 25 July, 2019 UTC

10 Need to Know Mac Terminal Commands

If you want to get into web development, knowing what the Terminal is and how to use it is very beneficial. But there are some essential commands that we’ll go over so we feel comfortable using it. In today’s article, we will be going over the 10 need ... more


Thursday, 25 July, 2019 UTC

My New Mac Setup and Why I Switched

I want to start this article by saying that I'm not here to start or take part in any brand war between Microsoft and Apple. I like both companies and have switched between operating systems occasionally over the years. Also, really hard to go back to ... more


Tuesday, 23 July, 2019 UTC

5 Minute Serverless Functions in Azure without an IDE

Microsoft Azure makes it incredibly easy to get a basic API/microservice up and running quickly! If you are unfamiliar with building serverless architectures in the Microsoft ecosystem, using Azure Functions has become a quick way to get back-end code ... more


Tuesday, 23 July, 2019 UTC

Code Formatting with Prettier in Visual Studio Code

Formatting code consistently is a pain, especially when working on a team. The beauty of modern day web development is that the tooling has gotten so much better! In this article, we will look at setting up Prettier to automatically format your code ... more


Friday, 12 July, 2019 UTC

JavaScript Ternary Operators

Ternary operators allow us to really quickly write shorter ** if ** statements Here's a quick example: // chris is level 100 cool // everyone else is level 999 const howCoolAmI = name === 'chris' ? 100 : 999; Let's take a deeper look at how we can rewrite ... more


Friday, 12 July, 2019 UTC

Dynamic Imports and F# Pipes Officially Land in Babel 7.5

A few days ago, the Babel team release two new feature proposals among all the awesome features we are looking forward to at the next major release. Over time, they have added a lot new things added into the JavaScript compiler, and this time, this proposals ... more


Tuesday, 9 July, 2019 UTC

The Top Tech People to Follow on Twitter for Your Stack

Twitter like other social media bring people together, and lots of everyday activities go on here too, people get jobs, sell, connect, work and even get items for free. This brings in the question of CROWD CONTROL . For a platform that has over 260 million ... more


Monday, 8 July, 2019 UTC

React Tools for VS Code - React Starter

Before we move into more coding with React, let's talk about the tools that can help us streamline our React development. We want to go into our React development as well equipped as possible! Visual Studio Code is my current (and many developers') current ... more


Monday, 8 July, 2019 UTC

VS Code June Update: Status Bar Updates, Indent Guides, and more

It's amazing that VS Code can consistently come out with meaningful updates month after month. The commitment that team has to the needs of the community is impressive. The June 1.36 update is out now. This update comes with some cosmetic upgrades and ... more


Monday, 8 July, 2019 UTC

Building an Animal Adoption Site with Node and Vue - Part 1

Today we're going to build an application that showcases animals that are available for adoption! This will be a two part blog series , so in this portion we'll just learn how to setup our application and get some mock data flowing from the backend to ... more


Wednesday, 3 July, 2019 UTC

React Starter: How does JSX make HTML elements?

JSX makes making React components easier. Some may find JSX to have a high learning curve and that's totally understandable. It's not exactly HTML and it's not exactly JavaScript, so it can take some getting used to. We have the ability to create React ... more


Wednesday, 3 July, 2019 UTC

Exploring Sets and Maps in JavaScript

Let’s take~~ ~~a look into two new constructs that were introduced in the JavaScript ES6 specification: Set - The Set object allows you to store unique values of any type. Map - The Map object allows you to store key-value pairs and remembers the original ... more


Tuesday, 2 July, 2019 UTC

Playing with the New Windows Terminal

The new Windows Terminal was just released in Preview capacity. You'll need the latest Windows May Update to download it. I was excited to hear about the new Windows Terminal as it brings a big improvement over the default cmd and Powershell experiences. ... more


Tuesday, 2 July, 2019 UTC

Trying the New WSL 2. It's Fast! (Windows Subsystem for Linux)

Windows Subsystem for Linux is the tool that was released by Microsoft to get a full UNIX system inside of Windows. Microsoft has put in some good initiatives for developers after purchasing GitHub, making VS Code, open sourcing .NET Core, and more. ... more


Tuesday, 25 June, 2019 UTC

ES6 Arrow Functions in JavaScript - Getting Started

With ES6 JavaScript came many updates to the language including the spread operator, object destructuring, new type of variables, and more. On top of all those amazing features came arrow functions , a new and concise way to write functions. In this ... more


Saturday, 22 June, 2019 UTC

React Starter: JSX Gotchas

JSX is a very powerful technology. With all new things that we have to learn, there is a bit of a learning curve. Let's talk about some of the gotchas when using JSX. These are some common things that are overlooked when first starting with JSX. I am ... more