أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
<html>
<body>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
var fruits = ["Banana", "Orange", "Apple", "Mango"];
document.getElementById("demo").innerHTML = fruits;
function myFunction() {
fruits.pop();
document.getElementById("demo").innerHTML = fruits;
}
</script>
</body>
</html>