List of Constants in Javascript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
// Variables of elements and inputs to manipulate const dmContainer = document.querySelector('#dmContainer'); const nameMotor = document.querySelector('#nameMotor'); const chasisBtn = document.querySelector('#chasis-btn'); const chasisModal = document.querySelector('#chasis-modal'); const chasisType = document.querySelector('#chasisType'); const colorChasis = document.querySelector('#color-chasis'); const modalPop = document.querySelector('.modalPop'); const inputName = document.querySelector('#inputName'); const motorsName = document.querySelector('.motorsName'); const behindImg = document.querySelector('.defMotor'); const tyresBtn =document.querySelector('#tyres-btn'); const tyresModal = document.querySelector('#tyres-modal'); const tyresType = document.querySelector('#tyres-type'); const handleBtn = document.querySelector('#handle-btn'); const handleModal = document.querySelector('#handle-modal'); const handleType = document.querySelector('#handle-type'); const headBtn = document.querySelector('#head-btn'); const headModal = document.querySelector('#head-modal'); const headType = document.querySelector('#head-type'); const mufflerBtn = document.querySelector('#muffler-btn'); const mufflerModal = document.querySelector('#muffler-modal'); const mufflerType = document.querySelector('#muffler-type'); const brakeBtn = document.querySelector('#brake-btn'); const brakeModal = document.querySelector('#brake-modal'); const brakeType = document.querySelector('#brake-type'); const frontFlash = document.querySelector('.flash-chasis-f'); const rearFlash = document.querySelector('.flash-chasis-r'); const flashSelect = document.querySelector('#flashSelect'); const doneChasis = document.querySelector('#doneChasis'); const motorsName2 = document.querySelector('#motors-name'); const motorsName3 = document.querySelector('#motors-name1'); const colorHead =document.querySelector('#color-head'); const colorMuffler = document.querySelector('#color-muffler') |