Choose a topic to test your knowledge and improve your JavaScript skills
"<script type=""text/javascript""> x=4+""4""; document.write(x); </script> Output------?"
Scripting language are
Which best explains getSelection()?
Choose the client-side JavaScript object:
What is mean by "this" keyword in javascript?
<script language="javascript"> function x() { document.write(2+5+"8"); } </script>
<script type="text/javascript"> var s = "9123456 or 80000?"; var pattern = /d{4}/; var output = s.match(pattern); document.write(output); </script>