diff options
author | hochan Lee <hochan049@gmail.com> | 2021-05-13 13:44:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 13:44:21 +0900 |
commit | b658346bfeda79a3b7655d81f0bfcc240aba28bd (patch) | |
tree | 106bea70f4b4ac4f4d62b49d5fd24e0651479cee /files/ko | |
parent | e15a921a8bc96b6d58d59b276ae58f6092b0f582 (diff) | |
download | translated-content-b658346bfeda79a3b7655d81f0bfcc240aba28bd.tar.gz translated-content-b658346bfeda79a3b7655d81f0bfcc240aba28bd.tar.bz2 translated-content-b658346bfeda79a3b7655d81f0bfcc240aba28bd.zip |
[FIX] macros, en-US update, nullish operator (#775)
Diffstat (limited to 'files/ko')
-rw-r--r-- | files/ko/web/javascript/reference/operators/nullish_coalescing_operator/index.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/files/ko/web/javascript/reference/operators/nullish_coalescing_operator/index.html b/files/ko/web/javascript/reference/operators/nullish_coalescing_operator/index.html index c9bc299a61..3a9a35a411 100644 --- a/files/ko/web/javascript/reference/operators/nullish_coalescing_operator/index.html +++ b/files/ko/web/javascript/reference/operators/nullish_coalescing_operator/index.html @@ -5,10 +5,12 @@ translation_of: Web/JavaScript/Reference/Operators/Nullish_coalescing_operator --- <p>{{JSSidebar("Operators")}}</p> -<p><strong>널 병합 연산자 (<code>??</code>)</strong> 는 왼쪽 피연산자가 {{jsxref("null")}} 또는 {{jsxref("undefined")}}일 때 오른쪽 피연산자를 반환하고, 그렇지 않으면 왼쪽 피연산자를 반환하는 논리 연산자이다.</p> +<p><strong>널 병합 연산자 (<code>??</code>)</strong> 는 왼쪽 피연산자가 <a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/null">null</a> 또는 <a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/undefined">undefined</a>일 때 오른쪽 피연산자를 반환하고, 그렇지 않으면 왼쪽 피연산자를 반환하는 논리 연산자이다.</p> <p>이는 왼쪽 피연산자가 <code>null</code> 또는 <code>undefined</code> 뿐만 아니라 <em><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Logical_Operators#Description">falsy</a> </em>값에 해당할 경우 오른쪽 피연산자를 반환하는 <a href="/en-US/docs/Web/JavaScript/Reference/Operators/Logical_Operators#Logical_OR_2">논리 연산자 OR (<code>||</code>)</a>와는 대조된다. 다시 말해 만약 어떤 변수 foo에게 <em><a href="/en-US/docs/Web/JavaScript/Reference/Operators/Logical_Operators#Description">falsy</a> </em>값( <code>''</code> 또는 <code>0</code>)을 포함한 값을 제공하기 위해 <code>||</code>을 사용하는 것을 고려했다면 예기치 않는 동작이 발생할 수 있다. 하단에 더 많은 예제가 있다.</p> +<p> 널 병합 연산자는 <a href="/ko/docs/Web/JavaScript/Reference/Operators/Operator_Precedence">연산자 우선 순위</a>가 다섯번째로 낮은데, <code>||</code> 의 바로 아래이며 <a href="/ko/docs/Web/JavaScript/Reference/Operators/Conditional_Operator">조건부 (삼항) 연산자</a>의 바로 위이다. </p> + <div>{{EmbedInteractiveExample("pages/js/expressions-nullishcoalescingoperator.html")}}</div> <p class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> and send us a pull request.<br> |