Skip to content

Commit

Permalink
Merge pull request #530 from xuv/typo-fix
Browse files Browse the repository at this point in the history
Fixes incorrect rendering of html characters in Conditions example
  • Loading branch information
davepagurek authored Sep 18, 2024
2 parents 66a3813 + 4b78629 commit df3d650
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You can read more about comparison operators
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#relational_operators" target="_blank">on MDN</a>.

Logical operators allow conditions to be combined.
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_AND" target="_blank">&amp;$amp;</a>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_AND" target="_blank">&amp;&amp;</a>
checks that both conditions are true. The circle in this example
has a black fill when it is toward the horizontal center of the canvas, and it
has a white fill when it is not. This is because of the if statement on line
Expand All @@ -29,4 +29,4 @@ no more than 300.
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR" target="_blank">||</a>
checks that at least one of the conditions is true. The circle reverses horizontal
speed when it reaches the left or right edge of the canvas because of the if statement
on line 75.
on line 75.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ oneLineDescription: जब आपका स्केच चल रहा हो
तुलना ऑपरेटर दो मानों की तुलना करके स्थितियाँ बनाने में मदद करते हैं। इस उदाहरण में, पंक्ति 69 पर <code>if</code> कथन के कारण रंग कम से कम 360 होने पर वृत्त का रंग शून्य पर रीसेट हो जाता है। आप तुलना ऑपरेटरों के बारे में अधिक पढ़ सकते हैं <a href='https://developer.mozilla.org/ en-US/docs/Web/JavaScript/Reference/Operators#relational_operators' target='_blank'>MDN</a> पर।


तार्किक संचालक शर्तों को संयोजित करने की अनुमति देते हैं। <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operator/Logical_AND' target='_blank'>&amp;$amp;</a> जांचता है कि दोनों स्थितियां सच हैं। इस उदाहरण में वृत्त जब कैनवास के क्षैतिज केंद्र की ओर होता है तो उसमें काला भराव होता है, और जब ऐसा नहीं होता है तो उसमें सफेद भराव होता है। ऐसा पंक्ति 45 पर दिए गए <code>if</code> कथन के कारण है, जो जाँचता है कि वृत्त की x स्थिति कम से कम 100 है और 300 से अधिक नहीं है।
तार्किक संचालक शर्तों को संयोजित करने की अनुमति देते हैं। <a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operator/Logical_AND' target='_blank'>&amp;&amp;</a> जांचता है कि दोनों स्थितियां सच हैं। इस उदाहरण में वृत्त जब कैनवास के क्षैतिज केंद्र की ओर होता है तो उसमें काला भराव होता है, और जब ऐसा नहीं होता है तो उसमें सफेद भराव होता है। ऐसा पंक्ति 45 पर दिए गए <code>if</code> कथन के कारण है, जो जाँचता है कि वृत्त की x स्थिति कम से कम 100 है और 300 से अधिक नहीं है।
<a href='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operator/Logical_OR' target='_blank'>||</a> जांचता है कि इनमें से कम से कम एक स्थितियाँ सत्य हैं। जब वृत्त पंक्ति 75 पर दिए गए <code>if</code> कथन के कारण कैनवास के बाएँ या दाएँ किनारे तक पहुँचता है तो वह क्षैतिज गति को उलट देता है।
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ if 和 else 语句用于规定一组特定的 <a href="https://developer.mozilla

比较运算符通过比较两个值来形成条件。在这个例子中,当圆形的色相达到360或更大时,根据第69行的 if 语句,色相会重置为零。若要浏览更多比较运算符的信息,请阅读 <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#relational_operators" target="_blank">MDN 上的相关文档</a>。

通过逻辑运算符,可以将条件进行组合。<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_AND" target="_blank">&amp;$amp;</a> 检查两个条件是否同时为真。在这个例子中,当圆位于画布的水平中心附近时,它的填充颜色为黑色;当它不在这个位置时,填充颜色为白色。这是因为第45行的 if 语句会检查圆的 x 坐标,看它是否大于等于 100 且不超过 300。而 <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR" target="_blank">||</a> 检查的则是两个条件中至少有一个为真的情况。根据第75行的 if 语句,当圆到达画布的左边缘或右边缘时,它会保持水平速度并调头。
通过逻辑运算符,可以将条件进行组合。<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_AND" target="_blank">&amp;&amp;</a> 检查两个条件是否同时为真。在这个例子中,当圆位于画布的水平中心附近时,它的填充颜色为黑色;当它不在这个位置时,填充颜色为白色。这是因为第45行的 if 语句会检查圆的 x 坐标,看它是否大于等于 100 且不超过 300。而 <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_OR" target="_blank">||</a> 检查的则是两个条件中至少有一个为真的情况。根据第75行的 if 语句,当圆到达画布的左边缘或右边缘时,它会保持水平速度并调头。

0 comments on commit df3d650

Please sign in to comment.