Get Or Else
Learn about get or else in fp-ts option
Code Editor
08-get-or-else.exercise.ts
💻
Loading editor...
Preparing Monaco Editor with TypeScript support
Test Results
Requirements
describe('getAddressString', () => {
const addressOption1: O.Option<string> = O.none
const addressOption2: O.Option<string> = O.some('123 Main St')
it('returns default string when address option is O.none', () => {
const result = getAddressString(addressOption1)
expect(result).toEqual('No address provided')
})
it('returns the address string in the correct format when address option is some', () => {
const result = getAddressString(addressOption2)
expect(result).toEqual('123 Main St')
})
})
🧪
Ready to Test?
Click "Run Tests" to see how your code performs
Quick Tips
•Read the TODO comments in the code
•Use Reset to restore original code
•Check Solution if stuck
Pro Tips
💡 Stuck? Here's what to try:
- • Read the comments in the code carefully
- • Run tests frequently to get feedback
- • Check the fp-ts documentation
- • Use the solution if you need help
🚀 Learning Approach:
- • Focus on understanding, not just solving
- • Experiment with different approaches
- • Think about real-world applications
- • Build on previous exercises