Skip to content

Undefined

Chung Leong edited this page Feb 9, 2024 · 7 revisions

The literal undefined in Zig is represented as undefined in JavaScript. You will only encounter it if you explicitly export undefined.

pub const Undefined = undefined;
import { Undefined } from './undefined-example-1.zig';

console.log(Undefined);
Clone this wiki locally