886 gün önce Javascript ile Yapıştırılan Stringler Eşleşiyormu Diye Baktırmak?
sorusunu cevapladı.
<script>
var firstInput = document.getElementById("first").value;
var secondInput = document.getElementById("second").value;
if (firstInput === secondInput) {
// do something here if inputs are same
} else if (firstInput > secondInput) {
// do something if the first input is greater than the second
} else {
// do something if the first input is less than the second
}
</script>