scrimba
Understanding Typescript In Depth
Typescript Section-2 Types in Typescript #14
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Typescript Section-2 Types in Typescript #14
AboutCommentsNotes
Typescript Section-2 Types in Typescript #14
Expand for more info
index.ts
run
preview
console
// Object & object
let obj1: Object = {};
let obj2: object = {};
let obj3: {} = {};
let obj4: any = {};
Console
"Hello from JavaScript"
,
index.html
-3:38