Code snippets

You will find here 22 code snippets I find useful so I don't have to Google ™ or Stackoverflow ™ them when I need. There are also code snippets I always forget! 😁 Sometimes, related links to the code will be available. The main difference with other random snippets you will find on the web is that in most cases (for the Symfony related ones) you will be able to run them directly from this website to check the output so you can verify it works as expected ™.

It's something to know about Yarn. When running install (when a previous install has already be done), it doesn't check that every...

yarn

Published on 2021-02-17 • Modified on 2021-02-17

 View the code


In this snippet, we will see how to use the JavaScript Fetch API asynchronously. Open your JavaScript console and click on the "fe...

JavaScript

Published on 2020-10-25 • Modified on 2020-10-25

 View the code


In this snippet, we will see how to extract a result from a JavaScript array using the reduce function and a callback. First, we d...

JavaScript

Published on 2020-07-19 • Modified on 2020-07-19

 View the code


In this snippet, we will see how to detect the status of the Internet connection with JavaScript. A message is displayed just abov...

JavaScript

Published on 2020-07-12 • Modified on 2020-07-12

 View the code


In this snippet, we will see how to loop on JavaScript arrays. I will go straight to the point and show my preferred ways, the fir...

JavaScript

Published on 2020-06-19 • Modified on 2020-06-19

 View the code


In this snippet, we will see how to test if a variable is defined with JavaScript. To correctly understand the following code, we ...

JavaScript

Published on 2020-06-04 • Modified on 2020-06-04

 View the code


In this snippet, we will see how to add or remove a class from an HTML element with JavaScript. It can be done with the classList ...

JavaScript

Published on 2020-05-23 • Modified on 2020-05-23

 View the code


In this snippet we will see how to alter the title element of an HTML document dynamically. It is something I use on my pomodoro.f...

Vue.js

Published on 2020-05-16 • Modified on 2020-05-16

 View the code


This function is the sibling of the setTimeout function we saw in the previous snippet. This time it will allow us executing some...

JavaScript

Published on 2020-05-06 • Modified on 2020-05-06

 View the code


This is a classical JavaScript snippet; I wanted to have it here on my blog with a live demo. Click on the button to trigger an al...

JavaScript

Published on 2020-05-02 • Modified on 2020-05-02

 View the code