我正在逐步应对这一挑战,因此并非所有代码都可以正常工作,但到目前为止,我已经隔离了一个问题。我不知道如何通过密钥名称检索密钥的值。因此,如果输入的是汞,我想通过使用字符串“ mercury”作为参数来检索0.2408467。这是我的JS:
var spaceAges = {
earth: 1,
mercury: 0.2408467,
venus: 0.61519726,
mars: 1.8808158,
jupiter: 11.862615,
saturn: 29.447498,
uranus: 84.016846,
neptune: 164.79132,
}
function getSpaceAge(seconds, planet) {
//var earthYears = seconds / 31536000;
var x = spaceAges['planet'].value;
console.log(x);
}
getSpaceAge(2134835688, mercury);