๐ฐnested type
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
JS โฉ value โฉ type โฉ nested type
replit โฉ nested type in JS
// A
class A {
// โญ๏ธ nested type: A.B
static B = class {
// ๐ฆ static method
static sayHi() { console.log('Hi') }