Tuesday, June 18, 2024
JavaScript provides several ways to handle conditional logic. One powerful method is the logical AND (&&) operator. This tutorial will…
Wednesday, July 12, 2023
Arrays Chunk Creates an array of elements split into groups the length of size. Compact Creates an array with all…
Monday, August 29, 2022
JavaScript golfing is the process of writing the smallest amount of JavaScript code to do something awesome.
Tuesday, August 9, 2022
JavaScript strings are deceptively complex constructs. There are actually two different types of strings – string Literals and string Objects…
Monday, July 4, 2022
This JavaScript code snippet adds inline validation to any form field (input, select and textarea). Feel free to customise it…
Tuesday, May 17, 2022
Here’s a quick snippet to preload the next step in a theoretical funnel/workflow: PHP JavaScript Like0
Tuesday, December 27, 2022
This is a quick reminder on how to use mathematical functions inside JavaScript. Instructions Trig: sin, cos, tan, cot, sec,…
Tuesday, May 17, 2022
I needed some structural updates for a site, and among them, I added some JavaScript snippets. I will show you…
Tuesday, May 2, 2023
A JavaScript global variable is a variable with global scope, meaning that it is visible and accessible throughout the program, unless…
Friday, June 3, 2022
This JavaScript will let you execute code a certain number of times. For example, you might want to only show…
Friday, June 3, 2022
Here’s a neat trick if you’re into micro-optimization. JavaScript compressors and minifiers are used to make JavaScript code smaller and,…
Monday, May 16, 2022
I don’t use 🍪 cookies anymore, I think they are too… rigid. I use localStorage items. By default, they don’t…