SOURCE

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

m(4,3)
console 命令行工具 X clear

                    
>
console