From 2ae5490e54b413897242860dfe2328e825773bda Mon Sep 17 00:00:00 2001 From: Clancy Clawson Date: Fri, 22 Mar 2024 07:49:01 -0600 Subject: [PATCH] Add link to Object.seal() in introduction to Object.isSealed() (#32750) * Add link to Object.seal() in introduction. > User: "What does `Object.isSealed()` do?" > Bad answer: "why, it tells you if it's sealed, duh!" > Good answer: "Oh, you want the article on `Object.seal()`, here you go." * actually define Object Seal in the introduction of Object.isSealed() Co-authored-by: Estelle Weyl * Update index.md --------- Co-authored-by: Estelle Weyl Co-authored-by: Joshua Chen --- .../reference/global_objects/object/issealed/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/files/en-us/web/javascript/reference/global_objects/object/issealed/index.md b/files/en-us/web/javascript/reference/global_objects/object/issealed/index.md index 0fe4d1876ca9c35..976decdcf277b2f 100644 --- a/files/en-us/web/javascript/reference/global_objects/object/issealed/index.md +++ b/files/en-us/web/javascript/reference/global_objects/object/issealed/index.md @@ -7,8 +7,7 @@ browser-compat: javascript.builtins.Object.isSealed {{JSRef}} -The **`Object.isSealed()`** static method determines if an object is -sealed. +The **`Object.isSealed()`** static method determines if an object is [sealed](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/seal). {{EmbedInteractiveExample("pages/js/object-issealed.html")}}