{
"name": "full-stack-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ git remote rm origin | |
| $ git remote add origin git@github.com:aplikacjainfo/proj1.git | |
| $ git config master.remote origin | |
| $ git config master.merge refs/heads/master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //enumerable vs iterable | |
| //enumerable is a keyword in every object...and it's by default true | |
| //this means that if you loop through the object using a for...in, it all properties | |
| //will be looped through except where a property' enumerable is defined as false. | |
| //see below | |
| let log = console.log; | |
| let names =["Maxon","Moureen", "Kaihura-nkuba"]; |