Skip to content

Commit

Permalink
Wrote task: move function implementation to HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarski committed Feb 22, 2020
1 parent a034134 commit 722f40c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ WarsawJs Workshop#41 - JavaScript basics
- Wykonaj działanie arytmetyczne wykorzystując język javascript
- Zamknij działanie arytmetyczne w blok funkcji
- Niech funkcja pozwoli wykonać działanie arytmetyczne z wykorzystaniem argumentów

3. Zaimplementuj funkcje z wykorzystaniem elementów dom
- zwróć uwagę na zwracany typ przez input
- obsłuż puste wartości
- spróbuj ukryć globalnych deklaracji

## What did I learned?
- definicja HTML
- znacznik HTML
Expand Down
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
<link rel="stylesheet" href="main.css">
</head>
<body>
Witaj Świecie!
<div>
Liczba A: <input type="text">
Liczba B: <input type="text">
<button>wylicz!</button>
<p>Suma: </p>
</div>
<script src="main.js"></script>
</body>
</html>
4 changes: 3 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
console.log("Witaj Świecie!")
function sum(a, b){
return a + b;
}

0 comments on commit 722f40c

Please sign in to comment.