mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
6 lines
81 B
TypeScript
6 lines
81 B
TypeScript
const a = "hello world";
|
|
const mod = {
|
|
instanceof: a
|
|
};
|
|
console.log(a, mod);
|