51. |
What is the correct way to write a JavaScript array?
જાવાસ્ક્રિપ્ટ એરે લખવાની સાચી રીત કઈ છે?
|
||||||||
Answer:
Option (a) |
52. |
Which of the following code creates an object?
નીચેનો કયો કોડ ઓબ્જેક્ટ બનાવે છે?
|
||||||||
Answer:
Option (b) |
53. |
Which built-in method adds one or more elements to the end of an array and returns the new length of the array?
કઈ બિલ્ટ-ઇન મેથડ એરેના અંતમાં એક અથવા વધુ એલિમેંટ ઉમેરશે અને એરેની નવી length returns કરે છે?
|
||||||||
Answer:
Option (c) |
54. |
Which of the following function of String object returns the characters in a string beginning at the specified location through the specified number of characters?
સ્ટ્રિંગ ઓબ્જેક્ટનું નીચેનું કયું કાર્ય, charactersની સ્પષ્ટ સંખ્યા દ્વારા specify locationથી શરૂ થયેલ stringમાં characters આપે છે?
|
||||||||
Answer:
Option (c) |
55. |
"What will be the output of the following JavaScript code?
var values=[1,2,3,4] var ans=values.slice(1); document.writeln(ans);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var values=[1,2,3,4] var ans=values.slice(1); document.writeln(ans);
|
||||||||
Answer:
Option (d) |
56. |
"What will be the output of the following JavaScript code?
var values=["one","two","Three"]; var ans=values.shift(); document.writeln(ans);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var values=["one","two","Three"]; var ans=values.shift(); document.writeln(ans);
|
||||||||
Answer:
Option (a) |
57. |
"What will be the output of the following JavaScript code?
var arr=[1,2,3]; var rev=arr.reverse(); document.writeln(rev);
નીચેના જાવાસ્ક્રિપ્ટ કોડનું આઉટપુટ શું હશે?
var arr=[1,2,3]; var rev=arr.reverse(); document.writeln(rev);
|
||||||||
Answer:
Option (b) |
58. |
The _______ method of an Array object adds and/or removes elements from an array.
એરે ઓબ્જેક્ટની _______ મેથડ એરેમાંથી એલિમેંટને ઉમેરી અને / અથવા દૂર કરે છે.
|
||||||||
Answer:
Option (d) |
59. |
The ______ method removes the last element of an array, and returns that element.
______ મેથડ એરેના છેલ્લા એલિમેંટને દૂર કરે છે અને તે એલિમેંટને રિટર્ન કરે છે.
|
||||||||
Answer:
Option (a) |
60. |
The ______ method removes the first element of an array, and returns that element.
______ મેથડ એરેના પહેલા એલિમેંટને દૂર કરે છે અને તે એલિમેંટને રિટર્ન કરે છે.
|
||||||||
Answer:
Option (d) |