[Javascript ] ES6 Memory leak
Three types of memory leaking for JavaScript and two types of react.js issue
Undeclared or accidental global variables
if we don't set any var let const it will turn to be global set, we can use 'use strict' to avoid it. the sample below
The unde...