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.
1 parent 285a873 commit 74f7f94Copy full SHA for 74f7f94
Deri-Kurniawan.html
@@ -0,0 +1,11 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Deri Kurniawan</title>
7
+ </head>
8
+ <body>
9
+ <h1>Deri Kurniawan</h1>
10
+ </body>
11
+</html>
main.js
@@ -1,5 +1,11 @@
function isOdd(number) {
- return number % 2 !== 0;
+ return number % 2 !== 0;
}
-console.log(isOdd(7));
+console.log(isOdd(7));
+
+function increment(number) {
+ return number + 1;
+}
+console.log(increment(7));
0 commit comments