Skip to content

Instantly share code, notes, and snippets.

View Yusfuu's full-sized avatar
👋
🌍

Youssef Hajjari Yusfuu

👋
🌍
View GitHub Profile
type Review {
"""
The business that this review is about
"""
business: Business
}
const expr = 'Papayas';
// old way
switch (expr) {
case 'Oranges':
console.log('Oranges are $0.59 a pound.');
break;
case 'Apples':
console.log('Apples are $0.32 a pound.');
break;