const x = 0
const y = 0
const width = 400;
const height = 200;
const array = Array.from({length: 100}, (_, i) => i);
function getViewBox() {
return `${x} ${y} ${width} ${height}`;
}
function find99() {
return array.find(item => item === 99);
}
function filterOdd() {
return array.filter(item => item % 2);
}
getViewBox();
find99();
filterOdd();