You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/03-code-quality/03-comments/article.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ function addJuice(container) {
128
128
उदाहरण के लिए:
129
129
```js
130
130
/**
131
-
* Returns x को n-वें घात तक बढ़ा देता है।
131
+
* Returns x को बढ़ाकर n-वें घात पर लौटाता है।
132
132
*
133
133
* @param{number}x संख्या बढ़ाने के लिए।
134
134
* @param{number}n घात, एक प्राकृत संख्या होनी चाहिए।
@@ -146,7 +146,7 @@ function pow(x, n) {
146
146
साथ ही, [JSDoc 3](https://github.com/jsdoc3/jsdoc) जैसे टूल हैं जो टिप्पणियों से HTML-दस्तावेज़ीकरण उत्पन्न कर सकते हैं। आप JSDoc के बारे में अधिक जानकारी <http://usejsdoc.org/> पर पढ़ सकते हैं।
147
147
148
148
इस तरह से कार्य क्यों हल किया जाता है?
149
-
: क्या लिखा है महत्वपूर्ण है। लेकिन जो *नहीं* लिखा है, वह और भी महत्वपूर्ण हो सकता है समझने के लिए कि क्या हो रहा है। कार्य को ठीक इस तरह क्यों हल किया जाता है? कोड कोई जवाब नहीं देता है।
149
+
: क्या लिखा है महत्वपूर्ण है। लेकिन जो *नहीं* लिखा है, वह और भी महत्वपूर्ण हो सकता है समझने के लिए कि क्या हो रहा है। कार्य को ठीक इस तरह क्यों हल किया जाता है? कोड कोई जवाब नहीं देता है।
150
150
151
151
यदि कार्य को हल करने के कई तरीके हैं, तो यह क्यों? खासकर जब यह सबसे प्रत्यक्ष नहीं है।
0 commit comments