pf.Culture("en-GB");pf.Culture("en-US");
var data = [1, 2, 3, 4];var result = pf.FilterArray(data, function(x) { return x < 3; });
var d = newDate();var result = pf.Format(d, "dd MMM yyyy");
pf.NZ(null) === ""; //true
pf.NZ("test") === "test"; //true
pf.NZ(5) == "5"; //implicitly true. The number remains intact
pf.NZ(5) !== "5"; //not equal because no string conversion takes place
var id = pf.RequestValue("id");