// 根据传入的宽、高比例,计算出实际高度 function m(w, h){ const width = 100 const height = width * (h / w) console.log(height) } m(4,3)