• + 0 comments

    THIS IS MINE

    function getSecondLargest(nums) {
        return Array.from(new Set(nums)).sort((a, b) => b - a) [1];
    }