Can you assign an anonymous function to a variable?
No Answer is Posted For this Question
Be the First to Post Answer
what will happen and why if i will acess the methods of superclass which is declared as private by a object of same subclass.
In how many ways a Javascript code can be involved in an HTML file?
Difference between Pure functions Vs. Impure functions in javascript?
What are data structures in javascript?
Explain arrow functions?
How to set a html document's background color?
How can you to add javascript to a page when performing an asynchronous postback?
Iam getting xml when we click on one button.Iam placing that xml in dom.Im getting that xml data in one xsl.In that xsl I want to increase the variable value which is declared in xsl. Ex: <parent_node> <childNode> <first><d1>ffftt</d1></first> <first><d1>eeeeiii</d1></first> <first><d1>uuuuwww</d1></first> </childNode> <childNode> <first><d1>fff</d1></first> <first><d1>eeee</d1></first> <first><d1>uuuu</d1></first> </childNode> </parent_node>
How to test 404 page in QA
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
What are the application of javascript?
Does javascript support automatic type conversion, if yes give example.