JavaScript, unlike many languages, has a very diverse code style. This is probably a combination of not only ASI (Automatic Semicolon Insertion) code style, but also if quotes should be used or not, and type safety.
So without further ado, lets talk about my favorite code style!
Coder100's code style
Semicolons
Semicolons are always required, but beware of ASI.
ASI automatically inserts a semicolon if the program errors. You can read up here
Quotes
Due to how often we're using single quotes, it is very recommended to use double quotes. Also in lower level languages, double quotes signify a string, and I believe it is wise to adapt that into your coding as well.
console.log("Let's go outside!"); // <-- good!
console.log('Let\'s go outside!') // <-- avoid!
However, the exception is when you require double quotes:
console.log("\"That's what she said\""); // <-- avoid!
console.log('"I am Coder100"'); // <-- good!
console.log('"That\'s what she said"'); // <-- edge case
console.log(`"That's what she said"`); // <-- good!
Try to minimize escaping, and if there is no need for escaping, just use ".
Spacing
I have always used two spaces, but sometimes I use 4, and sometimes I use tabs. So which one should we use? I flipped a coin between two spaces and tabs and got two spaces, so that's what we are using.
function hi() {
return 5; // <-- good!
}
function hi() {
return 5; // <-- avoid!
}
Resolving Paths
Use path.join, not only is it going to make your life easier, it also allows you to make more complex paths.
if (true) {
// this is what we want
} else {
console.log("POG UR COMPUTER IS BROKE");
}
function poggers(a) {
return 5;
}
let myArr = [1, 2, 3];
myArr.push(10);
poggers(10);
Arrow functions
I only use arrow functions as lambdas. You should too. It allows you to define functions anywhere!
const bad = () => console.log("bad"); // <-- avoid!
hi();
function hi() { // <-- good!
console.log("goodbye");
}
[1, 2, 3].map(n => n ** 2); // <-- good!
[1, 2, 3].map(function square(n) {
return n ** 2;
}); // <-- uh ew (avoid)
Also anonymous functions should always be converted to arrow functions, except for when binding.
Hopefully you like this code style. Finally I have peaked in good coding practices! In the next tutorial, I will be showing you how to use eslint to enforce this code style :))
JavaScript, unlike many languages, has a very diverse code style. This is probably a combination of not only ASI (Automatic Semicolon Insertion) code style, but also if quotes should be used or not, and type safety.
So without further ado, lets talk about my favorite code style!
Coder100's code style
Semicolons
Semicolons are always required, but beware of ASI.
ASI
ASI automatically inserts a semicolon if the program errors. You can read up here
Quotes
Due to how often we're using single quotes, it is very recommended to use double quotes. Also in lower level languages, double quotes signify a string, and I believe it is wise to adapt that into your coding as well.
However, the exception is when you require double quotes:
Try to minimize escaping, and if there is no need for escaping, just use
"
.Spacing
I have always used two spaces, but sometimes I use 4, and sometimes I use tabs. So which one should we use? I flipped a coin between two spaces and tabs and got two spaces, so that's what we are using.
Resolving Paths
Use
path.join
, not only is it going to make your life easier, it also allows you to make more complex paths.Destructuring
I haven't found much use for destructuring, but just make sure you add spaces:
Spacing
This code snippet will tell you everything.
Arrow functions
I only use arrow functions as lambdas. You should too. It allows you to define functions anywhere!
Also anonymous functions should always be converted to arrow functions, except for when binding.
Function Definition
I normally call functions before defining them,
however, what you want is really up to you. However, never define functions within loops.
Mutability
Like rust, make sure to define everything as constant. Only when you need to change mutability should you change the
const
keyword tolet
.Objects and Arrays
These can be prefixed with
let
if you are going to change them.const
isn't only for the interpreter, it is also for programmers.If you want objects to be constant, consider also adding
Object.freeze()
Same goes with arrays.
Member Access
The final code style is with member access. Try to use
.
as much as you can, but use[]
for variables and numbers.Conclusion
Hopefully you like this code style. Finally I have peaked in good coding practices!
In the next tutorial, I will be showing you how to use
eslint
to enforce this code style :))See you then!
Credits
Special thanks to @fuzzyastrocat and @Baconman321 for pointing out some edge cases
@Baconman321 you don't have 10.000 cycles lol