2025-05-12 11:28:03 -07:00

21 lines
318 B
Plaintext

static console.log("hello");
static console.log("world"); // after
static /** before */ console.log("again");
$ console.log("hello");
$ console.log("world"); // after
$ /** before */ console.log("again");
static {
// We
// Got
// COMMENTS
if (typeof window === "object") {
console.log(window);
}
}