Skip to content

Commit a41833c

Browse files
authored
Done with the article
Done with the article but some formatting is off. Needs to be fixed in this as well as in origin.
1 parent 0a03112 commit a41833c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

1-js/02-first-steps/02-structure/article.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,20 +135,20 @@ alert('हैलो');
135135
alert('विश्व');
136136
```
137137

138-
```smart header="Use hotkeys!"
139-
In most editors, a line of code can be commented out by pressing the `key:Ctrl+/` hotkey for a single-line comment and something like `key:Ctrl+Shift+/` -- for multiline comments (select a piece of code and press the hotkey). For Mac, try `key:Cmd` instead of `key:Ctrl` and `key:Option` instead of `key:Shift`.
138+
```smart header="हॉट कुंजी का उपयोग करें!"
139+
अधिकांश संपादकों में, कोड की एक पंक्ति को एक-लाइन टिप्पणी के लिए `key: Ctrl + /` को दबाकर टिप्पणी की जा सकती है और बहुस्तरीय टिप्पणियों के लिए `key: Ctrl + Shift + /` (कोड का एक टुकड़ा चुनें और हॉटकी दबाएं)। Mac के लिए, `key: Ctrl` के बजाय `key: Cmd` और `key: Shift` के बजाय `key: Option` आज़माएं।
140140
```
141141

142-
````warn header="Nested comments are not supported!"
143-
There may not be `/*...*/` inside another `/*...*/`.
142+
````warn header="टिप्पणियाँ जो अन्य टिप्पणियों के अंदर हैं समर्थित नहीं हैं!"
143+
एक `/*...*/` के अंदर `/*...*/` नहीं हो सकता है
144144
145-
Such code will die with an error:
145+
इस तरह के कोड में त्रुटि होगी:
146146
147147
```js run no-beautify
148148
/*
149-
/* nested comment ?!? */
149+
/* नेस्टेड टिप्पणी ?!? */
150150
*/
151-
alert( 'World' );
151+
alert( 'विश्व' );
152152
```
153153
````
154154

0 commit comments

Comments
 (0)