freejsobfuscator.com
Whats new since v3.0
★★ classes are now supported ★★
A class in JavaScript is a blueprint for creating objects with predefined properties and methods. It's part of the ES6 (ECMAScript 2015) standard.
Features:
-
Constructor: Special method for initializing new objects.
-
Methods: Functions inside the class.
-
Inheritance: Classes can extend other classes using
extends
.
Our free javascript obfuscator is now able to obfuscate and mix your classes code scripts.
- class Animal {...}
- class Dog extends Animal {...}
- const Animal2 = class {...}
- const Dog2 = class extends Animal2 {...}
- and any other type :)