export const s = "Hello, " + "world!"; export const t = "foo " + 42 + " bar"; export const u = "foo " + true + " bar"; export const v = "foo " + false + " bar"; export const w = "foo " + undefined + " bar"; export const x = "foo " + null + " bar";