diff --git a/content/courses/js/102-nullish-coalescing.md b/content/courses/js/102-nullish-coalescing.md index a00e91df1..e61b4d86a 100644 --- a/content/courses/js/102-nullish-coalescing.md +++ b/content/courses/js/102-nullish-coalescing.md @@ -1,6 +1,6 @@ --- title: Nullish Coalescing -description: How nullish coalescing is realted to truthy and falsy values +description: How nullish coalescing is related to truthy and falsy values weight: 24 lastmod: 2022-11-11T10:23:30-09:00 draft: false @@ -26,4 +26,3 @@ console.log(foo); // 'bar' const foo = 0 ?? 'bar'; console.log(foo); // 0 ``` -``` \ No newline at end of file