AIUB TPE

by Anik Islam Abhi

JavaScript

(function() {
  [].forEach.call(document.querySelectorAll('input[type="radio"][value="5"]'), function(el) {
    el.checked = true
  });
  document.querySelector("#Comment").value = "good";
})();