My goal is to learn everything new and exciting. I love to code. I can(love) spend a lot of time doing what interests me. My core strengths are in problem solving and fast learning.I want to get knowledge and skills that will be enough for employment in a company.
function removeSmallest(numbers) {
let min = Math.min(...numbers);
let numIndex = numbers.findIndex(a => a == min)
let res = numbers.filter( (num , index) => index != numIndex )
console.log(res);
}
removeSmallest([7,8,8,3,3,5])