From afffafadc7596c23c43cdeb7936d6144fb5c432e Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Mon, 7 Mar 2022 22:39:36 +0000 Subject: [PATCH] Restyled by prettier-markdown --- src/pages/docs/js-tips/conditional_operator.md | 1 - src/pages/docs/js-tips/create.md | 3 --- src/pages/docs/js-tips/for...of.md | 1 - 3 files changed, 5 deletions(-) diff --git a/src/pages/docs/js-tips/conditional_operator.md b/src/pages/docs/js-tips/conditional_operator.md index de3e99ccc9..05aca4b1a8 100644 --- a/src/pages/docs/js-tips/conditional_operator.md +++ b/src/pages/docs/js-tips/conditional_operator.md @@ -114,6 +114,5 @@ The ternary operator is right-associative, which means it can be "chained" in th - [Making decisions in your code — conditionals](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/conditionals) - [Expressions and operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators) - Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator diff --git a/src/pages/docs/js-tips/create.md b/src/pages/docs/js-tips/create.md index d41d49dbab..ce04ea37e2 100644 --- a/src/pages/docs/js-tips/create.md +++ b/src/pages/docs/js-tips/create.md @@ -382,6 +382,3 @@ If you wish to inherit from multiple objects, then mixins are a possibility. - [`Object.prototype.isPrototypeOf()`](isprototypeof) - [`Reflect.construct()`](../reflect/construct) - John Resig's post on [getPrototypeOf()](http://ejohn.org/blog/objectgetprototypeof/) - - - diff --git a/src/pages/docs/js-tips/for...of.md b/src/pages/docs/js-tips/for...of.md index 095bac8b99..30df90e7cb 100644 --- a/src/pages/docs/js-tips/for...of.md +++ b/src/pages/docs/js-tips/for...of.md @@ -363,6 +363,5 @@ No - [`Map.prototype.forEach()`](../global_objects/map/foreach) - [`Object.entries()`](../global_objects/object/entries) - Useful when using `for...of` over an object. - Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of