From 962839108f8a581e18df070121a6a01d64cde39d Mon Sep 17 00:00:00 2001 From: LeviDing Date: Mon, 7 Feb 2022 23:01:54 +0800 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/08-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index bc1d69d5..c7327ff9 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -205,7 +205,7 @@ Here's an extract from the [precedence table](https://developer.mozilla.org/en-U | 2 | assignment | `=` | | ... | ... | ... | -As we can see, the "unary plus" has a priority of `15` which is higher than the `13` of "addition" (binary plus). That's why, in the expression `"+apples + +oranges"`, unary pluses work before the addition. +As we can see, the "unary plus" has a priority of `15` which is higher than the `12` of "addition" (binary plus). That's why, in the expression `"+apples + +oranges"`, unary pluses work before the addition. ## Assignment