Last active
April 29, 2022 20:02
-
-
Save bennycode/415e29f1e8f14e030aa126368da26343 to your computer and use it in GitHub Desktop.
Type Casting in TypeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Person, printAddress, MissingAddressError} from './printAddress'; | |
describe('printAddress', () => { | |
it('throws an error when person does not have an address', () => { | |
const benny = { | |
age: 34, | |
} as Person; | |
expect(() => { | |
printAddress(benny); | |
}).toThrowError(MissingAddressError); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type Person = { | |
age: number; | |
address: { | |
city: string; | |
} | |
} | |
export function printAddress(person: Person): void { | |
if (!person.address) { | |
throw new MissingAddressError(); | |
} | |
console.log(person.address.city); | |
} | |
export class MissingAddressError extends Error { | |
constructor() { | |
super('Please enter an address.'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment