forked from marijnh/Eloquent-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmountains.js
More file actions
12 lines (11 loc) · 516 Bytes
/
mountains.js
File metadata and controls
12 lines (11 loc) · 516 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
var MOUNTAINS = [
{name: "Kilimanjaro", height: 5895, country: "Tanzania"},
{name: "Everest", height: 8848, country: "Nepal"},
{name: "Mount Fuji", height: 3776, country: "Japan"},
{name: "Mont Blanc", height: 4808, country: "Italy/France"},
{name: "Vaalserberg", height: 323, country: "Netherlands"},
{name: "Denali", height: 6168, country: "United States"},
{name: "Popocatepetl", height: 5465, country: "Mexico"}
];
if (typeof module != "undefined" && module.exports)
module.exports = MOUNTAINS;