String
Textual data can be represented using string primitives.
Strings are denoted by opening and closing double quotes ("
) characters.
- Knot
- TypeScript
knot
const stringValue = "this is my page";
knot
const stringValue = "this is my page";
tsx
const stringValue = "this is my page";
tsx
const stringValue = "this is my page";