From b665428ff5f33d37d5cb97388bb72e31e089e4b4 Mon Sep 17 00:00:00 2001 From: Chalarangelo Date: Thu, 25 Feb 2021 20:49:35 +0200 Subject: [PATCH] Fix blog excerpt breaking everything --- blog_posts/javascript-object-is-triple-equals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog_posts/javascript-object-is-triple-equals.md b/blog_posts/javascript-object-is-triple-equals.md index cd6eeff84..5ce4ce9c1 100644 --- a/blog_posts/javascript-object-is-triple-equals.md +++ b/blog_posts/javascript-object-is-triple-equals.md @@ -4,7 +4,7 @@ type: question tags: javascript,object,type authors: chalarangelo cover: blog_images/rocky-mountains.jpg -excerpt: `Object.is()` and the triple equals operator (`===`) can both be used for equality checking in JavaScript, but when should you use each one? +excerpt: "`Object.is()` and the triple equals operator (`===`) can both be used for equality checking in JavaScript, but when should you use each one?" --- If you want to check equality in JavaScript, there are two comparison operators, which are explained in depth in a previous [article](/blog/s/javascript-equality).