|
|
|
|
|
by Atotalnoob
765 days ago
|
|
JavaScript isn’t obfuscated. It’s ulgified and minified. Uglification is the process where function names and other items are shortened into smaller names which reduces the payload size For example MyFunction(){ Const myVar = 5 } Could become a(){const b= 5} |
|