<input>
<script>
let input = document.querySelector('input');
// سمة ⇐ خاصية
input.setAttribute('value', 'text');
alert(input.value); // text
//خاصية ⇍ سمة
input.value = 'newValue';
alert(input.getAttribute('value')); // text (لم يتم التحديث)
</script>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.