Report Bug
Qus : Which method is used to remove the last element from an array in JavaScript?
Qusजावास्क्रिप्ट में किसी सरणी से अंतिम तत्व को हटाने के लिए किस विधि का उपयोग किया जाता है?

A. shift()
B. pop()
C. remove()
D. delete()


Solution
B. pop()






Report Bug