let m = new Map([['a', 2], ['b',4], ['c',6]]) console.log("Max:", Math.max(...m.values())) Run code snippet