1 line
93 B
JavaScript
1 line
93 B
JavaScript
module.exports = longestItem = (...vals) => [...vals].sort((a, b) => b.length - a.length)[0]; |