[[oktatas:web:typescript|< TypeScript]]
====== TypeScript űrlap ======
* **Szerző:** Sallai András
* Copyright (c) Sallai András, 2021
* Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]]
* Web: https://szit.hu
===== Input elemek tartalma =====
A getElementById() függvény **HTMLElement** típus ad vissza, aminek nincs .value
tulajdonsága. Ezért átalakítjuk **HTMLInputElement** típussá.
const input = document.getElementById("szam2") as HTMLInputElement;
console.log(input.value);
const input = document.getElementById("szam1");
console.log(input.value);
DOM elemek:
* https://developer.mozilla.org/en-US/docs/Web/API