Skip to main content

TypeScript

// TODO: update this

<script type="text/javascript">
var a = 5;
</script>

<script src="/externalfile/filename.js"></script>

Data types

// TODO: https://dzone.com/articles/what-are-the-basic-data-types-in-typescript

Data TypesExamples
undefinedA variable that has not been assigned a value is of type undefined.
nullno value.
string'a', 'aa', 'aaa', 'Hello!', '11 cats'
number12, -1, 0.4
booleantrue, false
objectA collection of properties.
symbolRepresents a unique identifier.