mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
21 lines
318 B
Plaintext
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);
|
|
}
|
|
}
|