๐ ๐ฎ๐๐๐ฒ๐ฟ๐ถ๐ป๐ด ๐๐๐ป๐ฐ๐๐ถ๐ผ๐ป๐: ๐๐บ๐ฝ๐ฟ๐ผ๐๐ถ๐ป๐ด ๐๐ผ๐ฑ๐ฒ You want to improve your code skills. Let's start with converting a string to Camel Case in JavaScript.
- Camel Case starts with a lowercase letter.
- Each subsequent word starts with an uppercase letter. This style is used to name variables and functions in JavaScript.
You can use functions to organise and reuse code.
- Functions take inputs and perform actions.
- They return outputs. The return statement sends a result back from a function. When the return executes, the function stops running.
You should know about JavaScript Hoisting.
- Hoisting moves declarations to the top of their scope.
- It applies to variable and function declarations.
- Initialisations are not hoisted.
Source: https://dev.to/karthick_07/mastering-functions-unleashing-the-power-of-code-5gka Optional learning community: https://t.me/GyaanSetuAi