In this video tutorial, you will learn how to find middle element in array in javascript.

Subscribe : https://www.youtube.com/channel/UCBwPlFFaigg5WA-Y1Iz-HUA

Source Code:

HTML:


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link rel="stylesheet" href="style.css">
    <title>Document</title>
</head>
<body>
    
    <div>
        <button>Get</button>
        <h1>Result</h1>
    </div>
    
    <script src="script.js"></script>
</body>
</html>

CSS:


body {
    text-align: center;
}
 
div {
    display: inline-block;
}
 
button {
    display: inline-block;
    padding: 10px 20px;
}

Javascript:

let btnGet = document.querySelector('button');
 
let result = document.querySelector('h1');
 
let users = ['James', 'Marks', 'John', 'Mary', 'Ronald'];
 
btnGet.addEventListener('click', () => {
    let output = (users.length - 1) / 2;
 
    result.innerText = users[output];
});

#js #javascript

How to Find Middle Element in Array in Javascript
4.25 GEEK