Miscellaneous
1. Private Methods
__somefunction - underscore means, in most other languages like Java, when you create a class you can have a private properties that you cannot access outside the class. With Javascript, that is not possible. So there is a common standard which is to put underscore and in JS world, this says that it is a private property that should not be accessed outside the scope.
2. The Garbage Collector
Our computers are going to delete the memory that is unused and because it sees that there is still a variable referencing this location in memory and this value in memory, it's not going to delete it (there is pointer to this location in memory). How things get deleted in JS is simply removed the pointer and in JS, memory is managed automatically, the memory will get deleted.
3. Everything is Object in JS (Number too)
in JavaScript, when we assign variable, internally it's going to construct the Number object so that we have access to all these methods and that's how we can use things like to fixed or to string. Technically in JavaScript everything is an object with constructor function and methods, except for null and undefined
4. Returning Object Literals
5. Update Project Dependencies
6. Default Argument
Default arguments only provide default values for undefined
arguments. Other "falsy" values such as ''
, ""
, false
, null
, 0
, and NaN
, will not be replaced by a default value.
7. CSS
Regular CSS Pros and Cons
Pros: Better mental image as CSS in CSS file and JS in JS file.
Cons: CSS share one single global namespace as it was imported at the top of the HTML code
CSS in JS Pros and Cons (Similar to style={ } in the React, but this method has limited selector i.e. not available for onHover etc)
Pros: Encapsulation, more effective performance
Cons: CSS is inside JS
One example is styled-components. Underneath this tech, we are using a unique random ID that will guarantee name specificity that will not pollute the namespace.
Advantages:
Share and reuse components
Have access to all selector
Leverage on props to render the CSS (i.e. can write isActive conditional props inside CSS)
7. Object Reference
Last updated
Was this helpful?