title: “NULL” author: “Pierre Laplante laplante@plcb.ca” date: “2023-04-13” version: “1.0.0” section: “1g”
NULL is a primitive data type in goweb.
null
to a variable and print the variable, nothing is displayed.null
is represented in JSON format.res={{
null;
}}.
res=.
res={{
a := null;
a;
}}.
res=.
res={{
a := { "x": null, "y": 1 };
a;
a = [1, null];
a;
}}.
res={"x":null,"y":1}[1,null].