Set standard to code(Javascript, Angular, Nodejs)

Опубликовано: 09 Июнь 2026
на канале: CodeGen
71
14

Hi Guys,
You will get the content for tech programmers. This video contains content on how you can set structure to your code. So that your code will look pretty & readable.
#nodejs #angular #javascript #programming #coding #code_with_passion
______________________________________________________________________
1. 4 spaces for indentation
2. No trailing white space
3. Use semicolons
4.Use single quotes
5.Opening braces go on the same line
6.Declare one variable per statement:
7.Use Arrow Function Expressions():
8.Prefer const over let. Ditch the var:
9.JS calculation for precision:
10.Use lowerCamelCase for variables, properties, and function names:
11.Use UpperCamelCase for class names:
12.Use UPPERCASE for Constants: