Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 323 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 323 Bytes

Primitive matches any primitive value

let primitive: Primitive;

primitive = 1;
primitive = "1";
primitive = true;
primitive = 1n;
primitive = Symbol.iterator;
primitive = null;
primitive = undefined;

TS Playground – https://tsplay.dev/mq9rqm