Charlie @ 90-10.dev

@90_10_dev
2 Followers
8 Following
5 Posts
90-10.dev is an independent publication re-launched in December 2022 aimed to demystify the web development learning process via short articles on various subjects, following a somehow linear journey.
WhatWeb Development Tutorials
WhenEvery day
WhyContinuous Learning

Fast and efficient odd-even checking in JavasScript using the bitwise AND operator

https://www.90-10.dev/js-bitwise-operators/

#dev #javascript #guide #tutorial #webdev #CodeNewbie #odd #even #bitwise #operator #bitwiseAND

Bitwise Operators

Bitwise operators in JavaScript are powerful tools that allow us to manipulate individual bits in a number. These operators are often under-utilised due to their seemingly cryptic nature, but they can prove to be incredibly efficient in certain applications.

90-10.dev - Expand your coding knowledge with concise tutorials

Fast and efficient odd-even checking in JavasScript using the bitwise AND operator

https://www.90-10.dev/js-bitwise-operators/

#dev #javascript #guide #tutorial #webdev #CodeNewbie #odd #even #bitwise #operator #bitwiseAND

Bitwise Operators

Bitwise operators in JavaScript are powerful tools that allow us to manipulate individual bits in a number. These operators are often under-utilised due to their seemingly cryptic nature, but they can prove to be incredibly efficient in certain applications.

90-10.dev - Expand your coding knowledge with concise tutorials

Did you know that JavaScript has several built-in objects that can help a lot? Here is 10 of them:
https://www.90-10.dev/js-built-in-objects-1/

#dev #javascript #javascriptlearning #webdev #CodingTips #Object #Array #String #Number #Boolean #Date #Math #RegExp #Function #Error

JavaScript Built-in Objects (part 1)

JavaScript has several built-in objects that provide functionality to perform various tasks - they are essential to the language and can be used to make development easier and faster.

90-10.dev - Expand your coding knowledge with concise tutorials

In JavaScript, every object has an internal prototype property which allows an object to inherit properties and methods from another object:
https://90-10.dev/js-prototypes/

#dev #javascript #javascriptlearning #tutorial #webdev #CodingTips #prototype #__proto__ #object #oop

Can you tell the difference between:
`Symbol('sum') === Symbol('sum') `
and
`Symbol.for('sum') === Symbol.for('sum') ` ?
https://90-10.dev/js-symbols/

#dev #javascript #guide #tutorial #webdev #CodeNewbie #Symbol