The languages Swift, Kotlin, and TypeScript (SKT) share fundamental concepts in basic data types.
All three languages are statically typed and encourage explicit type declarations.
In terms of numbers, Swift provides Int and Double, Kotlin provides Int and Double, and TypeScript has a single type 'number' for both integers and floating-point values.
Booleans and strings are also similar across these languages.