How to add/remove properties to object dynamically in javascript?
No Answer is Posted For this Question
Be the First to Post Answer
Explain javascript debounce function?
What is a closure and how do you use it?
where we use javascript and for which purpose we use javascript how?
13 Answers Bugatti, IBM, Infosys, TCS,
What is the difference between innerHTML and innerText?
Should you use var or let?
What is a string in javascript?
How do you round a value in javascript?
What is camelcase in programming?
Where do I write javascript code?
What makes something a function?
Can we create session in javascript?
The below script is working Internet browser but not working in mozilla plz find that good way... function doSubmit(op){ var rowcount=document.getElementsByName ("parameterTypeId").length; var parameterGrade; var performance; var goal; if(op == "save"){ for (var i=0; i < rowcount; i++) { var param=eval("document.forms [0].parameterGrade"+i); if(param.value != "select"){ return true; } } alert("Please rate atleast one attribute"); return false; }//if ends here