Skip to content

Instantly share code, notes, and snippets.

View valeriopisapia's full-sized avatar
🏠
Working from home

Valerio valeriopisapia

🏠
Working from home
View GitHub Profile
@ilfroloff
ilfroloff / ClassA.js
Last active March 4, 2024 09:01
JavaScript Singleton using class
'use strict';
import Singleton from 'Singleton';
class ClassA extends Singleton {
constructor() {
super();
}
singletonMethod1() {
// ...