3 followers
Hey ๐ My name's Reza, I'm a developer & author who enjoys simplifying the complex side of tech. I also make tiny infographics about coding, performance & SEO.
You might have encountered the error โUncaught SyntaxError: Unexpected end of JSON inputโ when using JSON.parse(). โ Update: This post was originally...
This guide explores the three common ways to add commas to numbers in JavaScript. โ Update: This post was originally published on my blog...
How do you remove the last character from a string in PHP? Most web developers face it at one time or another; It can be a white space, a trailing...
The error โTypeError: object.map is not a functionโ occurs when you call the map() method on a non-array object in JavaScript. โ Update: This post...
โError: cannot find moduleโ occurs when you try to load a non-existant module in Node โ Either via ESM (ECMAScript Modules) or CommonJS module...
PHP double question marks (??) โ officially known as Null coalescing operator โ is a convenient alternative to ternary expressions in conjunction with...