Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions step00d_assignability_error/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
let message = "Hello World";
message = 6;
console.log(message);

//An assignability error in TypeScript occurs when you attempt to assign a value to a variable or property in a way that does not conform to its declared type.

let myName: string
myName = 22 // Here, trying to assign the number 22 to myName. Since myName is declared to hold only string values, TypeScript throws an assignability error: Type 'number' is not assignable to type 'string'

console.log(myName);