VS Code Monokai 🔥🔥🔥
Theme
Dark Mode
class Author {
constructor(firstName, lastName, yearBorn) {
this.firstName = firstName;
this.lastName = lastName;
this.yearBorn = yearBorn;
}
getFullName() {
return this.firstName + ' ' + this.lastName;
}
}
// Create a new Author
const author = new Author('Douglas', 'Adams', 1952);
author.firstName = 'Doug';
// Prints "Doug Adams"
const fullName = author.getFullName();
console.log(fullName);
Editable example
Installed 296 timesLast updated Dec 29, 2022
Just like VS Code's Monokai theme!
Install it if you like the theme, and please leave a tip if you like it 😎