We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24af35d + f1cc527 commit 13c74a3Copy full SHA for 13c74a3
1-js/03-code-quality/02-coding-style/1-style-errors/task.md
@@ -2,9 +2,9 @@ importance: 4
2
3
---
4
5
-# Bad style
+# Лош стил
6
7
-What's wrong with the code style below?
+Какво не е наред с форматирането на долния код?
8
9
```js no-beautify
10
function pow(x,n)
@@ -17,12 +17,12 @@ function pow(x,n)
17
let x=prompt("x?",''), n=prompt("n?",'')
18
if (n<=0)
19
{
20
- alert(`Power ${n} is not supported, please enter an integer number greater than zero`);
+ alert(`Степен ${n} не се поддържа, моля въведете цяло число, по-голямо от нула`);
21
}
22
else
23
24
alert(pow(x,n))
25
26
```
27
28
-Fix it.
+Поправете го.
0 commit comments