diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..483be22 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "javascript", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "javascript", + "version": "1.0.0", + "license": "ISC" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..25d3f42 --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "javascript", + "version": "1.0.0", + "description": "Repository of JavaScript practices and works.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC" +} diff --git a/src/gtr34.js b/src/gtr34.js new file mode 100644 index 0000000..f3017c7 --- /dev/null +++ b/src/gtr34.js @@ -0,0 +1,13 @@ + + +const gtr34 = { + + brand: `Nissan`, + model: `Skyline GT-R V-spec (R34)`, + engin: `In-line 6-cyl, twin-turbo`, + power: `276bhp @ 7000rpm`, + torque: `289lb ft @ 4400rpm`, + +} + +console.log(`The car brand is ${gtr34.torque}`); \ No newline at end of file