21. |
Which of the following is correct property about of navigator object?
નીચેનામાંથી કઈ નેવિગેટર ઓબ્જેક્ટ વિશેની યોગ્ય property છે?
|
||||||||
Answer:
Option (d) |
22. |
What is the meaning of following JavaScript code?
<script> document.write(navigator.appCodeName); </script>
જાવાસ્ક્રિપ્ટ કોડનો અર્થ શું છે?
<script> document.write(navigator.appCodeName); </script>
|
||||||||
Answer:
Option (a) |
23. |
Which is the method of string object?
સ્ટ્રિંગ ઓબ્જેક્ટ ની મેથડ શું છે?
|
||||||||
Answer:
Option (d) |
24. |
What is the output of the following JavaScript code?
<script> var a="Hello World"; var x=a.lastIndexOf("l"); document.write(x); </script>
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script> var a="Hello World"; var x=a.lastIndexOf("l"); document.write(x); </script>
|
||||||||
Answer:
Option (c) |
25. |
What is the output of the following JavaScript code?
<script> var str = "Hello world!"; var res = str.substring(1, 4); document.getElementById("demo").innerHTML = res; </script>
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script> var str = "Hello world!"; var res = str.substring(1, 4); document.getElementById("demo").innerHTML = res; </script>
|
||||||||
Answer:
Option (b) |
26. |
What is the output of the following JavaScript code?
<script> var str = "How are you doing today?"; var res = str.split(" ", 3); document.getElementById("demo").innerHTML = res; </script>
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું છે?
<script> var str = "How are you doing today?"; var res = str.split(" ", 3); document.getElementById("demo").innerHTML = res; </script>
|
||||||||
Answer:
Option (a) |
27. |
Which property is used to add properties and methods to an object?
ઓબ્જેક્ટમાં પ્રોપર્ટિ અને મેથડ ઉમેરવા માટે કઈ પ્રોપર્ટિનો ઉપયોગ થાય છે?
|
||||||||
Answer:
Option (c) |
28. |
Which is the JavaScript Native Objects?
જાવાસ્ક્રિપ્ટ નેટિવ ઓબ્જેક્ટો કયા છે?
|
||||||||
Answer:
Option (d) |
29. |
What is mean by "this" keyword in javascript?
જાવાસ્ક્રિપ્ટમાં "this" કીવર્ડનો અર્થ શું છે?
|
||||||||
Answer:
Option (a) |
30. |
__________ method is used to remove focus from the specified object.
__________ મેથડનો ઉપયોગ specify ઓબ્જેક્ટથી focus remove કરવા માટે થાય છે.
|
||||||||
Answer:
Option (a) |