Posts

Showing posts from January 30, 2019

Homburg–Neunkirchen railway

Image
Homburg–Neunkirchen railway Overview Locale Saarland, Germany Line number 3282 Homburg–Neunkirchen 3275 Bexbach–Bexbach power station 3286 Neunkirchen–Bexbach power station [1] Technical Line length 13.6 km (8.5 mi) Track gauge 1,435 mm ( 4 ft  8   1 ⁄ 2  in ) standard gauge Electrification 15 kV/16.7 Hz AC Overhead catenary Route number 683 Route map .mw-parser-output .RMbox{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.mw-parser-output .RMinline{float:none;width:100%;margin:0;border:none}.mw-parser-output table.routemap{padding:0;border:0;border-spacing:0;background:transparent;white-space:nowrap;line-height:1.2;margin:auto}.mw-parser-output .RMir{border:0;border-spacing:0;display:table;line-height:0;padding:0!important;margin:0 auto!important}.mw-parser-output table.routemap .RMsi{display:inline;font-size:90%}.mw-parser-output table.routemap .RMl1{padding:0 3px;text-align:left}.mw-pa

Sivalik Hills

Image
Sivalik Hills From Wikipedia, the free encyclopedia   (Redirected from Shivalik hills) Jump to navigation Jump to search Kalimpong town in West Bengal, India, as viewed from a distant hill. In the background are the Himalayas. The Sivalik Hills , also known as Churia Hills , are a mountain range of the outer Himalayas that stretches from the Indus River about 2,400 km (1,500 mi) eastwards close to the Brahmaputra River. It is 10–50 km (6.2–31.1 mi) wide with an average altitude of 1,500–2,000 m (4,900–6,600 ft). Between the Teesta and Raidāk Rivers in Assam is a gap of about 90 km (56 mi). In some Sanskrit texts, the region is called Manak Parbat . [1] Sivalik literally means 'tresses of Shiva’. [2] Contents 1 Geology 2 Pre-history 3 Demographics 4 In culture 5 See also 6 References Geology [ edit ] @media all and (max-width:720px){.mw-parser-output .tmulti>.thumbinner{wi

How to use Object.defineProperties()?

Image
0 Below I am trying to define properties of an object using defineProperties function, but I am getting unexpected outcome when I print last line in this script. I expect 2005 to be logged at console, but I keep getting 2004. Same applies to other properties, like edition. Am I using this defineProperties function incorrectly? var book = {}; Object.defineProperties(book, { _year: { value: 2004 }, edition: { value: 1 }, year: { get: function() { return this._year; }, set: function(newValue) { if (newValue > 2004) { this._year = newValue; this.edition += newValue - 2004; } } } }); console.log(book); console.log(book.year); book.year = 2005; console.log(book); console.log(book.year)