### Repository https://github.com/babel/babel #### What Will I Learn? - Setup Babel - Understand the difference between **var, let, and const** #### Resources - Babel - https://babeljs.io/ #### Difficulty Basic ### Tutorial Content This time, we will learn about **javascript es6 (JS ES)** and we will learn in detail the syntax found in es6, the syntax in es6 is widely used by modern frameworks today, so for those of you who want to learn frontend frameworks like ***React, Angular, and Vue***. You should study first or at least be familiar with javascript es6 syntax so that you are easier to learn these frameworks. This tutorial will discuss all **javascript es6 (JS ES)** and this is the first tutorial. We will just get acquainted with es6 javascript. ### *What is es6 ??* For those of you who are familiar with javascript you will know the previous generation of javascript, namely **es2015 or es15**, now we will discuss the next generation, namely ***es16***, ES stands for **ECMA Script**. es16 introduces syntax or a new method of writing which aims to make it easier for developers to build a code quickly and efficiently. to overcome it you can use [Babel ](https://babeljs.io/). Babel will compile es16 javascript into normal javascript so that it can be used in all browser versions. ### *What is Babel?* Because ***javascript es6*** doesn't run on all browsers we need tools that are babel. **Babel** is a useful tool for compiling es6 javascript into normal javascript. - **Install Babel** To install it we can go to the babel https://babeljs.io/, There are several ways to install it, but most commonly we can install it via **babel-cli** with NPM, like the example below: **Install Babel:** ```npm install --save-dev babel-cli babel-preset-env``` Create your project folder and open the **command prompt** in the folder. After installing you will automatically get the **package.json** file as a result of the installation, before installing we must first provide the package.json file as follows: **package.json** ``` javascript { // dependencies } ``` after you provide the **package.json** file you can continue the installation process as shown below   - **Use Babel** for usage, we will create a shortcut that we will call when we want to build the project. We need to add it to **package.json**, we can see an example like this: **Package.json** ``` javascript { "devDependencies": { "babel-cli": "^6.26.0", "babel-preset-env": "^1.7.0" }, "scripts":{ "build": "babel src -d dist" } } ``` - We add ```"scripts":{}``` to **package.json**, - ```"build": "babel src -d dist"```:```"build"``` as a command to compile will be run like this ```"npm run build"```, ```src``` is the folder name whose contents we will compile and ```dist``` is folder that will save the compile. - Please make the folder that you registered is in package.json, namely **src** and **dist**. to test whether Babel is working properly we can make an example by creating an **index.js** file in the ```scr``` folder. **src/index.js** ``` javascript let x x = 10 console.log(x) ``` **Compile:**  **Result:**  **Use in html** ``` html <!DOCTYPE html> <html> <head> <title>Learn Es6 - Duski Tutor</title> </head> <body> <h1>Learn javascript es6</h1> <script type="text/javascript" src="dist/index.js"></script> </body> </html> ```  - We can import javascript that we compile as follows ```<script type="text/javascript" src="dist/index.js"></script>``` - If we run the **index.html** file we will see the results of ```console.log ()``` in the index.js that we have created above. We have successfully run the babel function well, but actually, we haven't learned about es6, we only compile es6 javascript to normal javascript so that it can run in all browsers. ### Introduction of *var, let, and const* on vanilla javascript, if we want to make a variable we generally make it with ```var```, But in javascript es6 we know new things namely ***let and const***. many developers who use JavaScript, many suggest replacing ***var with let***. We will see an explanation of ***var, let, and const***. - **Var** So far ```var``` has been used for years on javascript to create a variable, according to the experience of developers, many often use the same variable name, so the value of a variable becomes **replaced**, Because of the nature of var that can be a **global variable** that can be used anywhere in the script that we make, this is usually called the **function scope**, for more details we can see the case example as shown below: **Example:** ``` javascript var title = "Thor Ragnarok"; var title = "Avenger infinity war"; console.log(title); ```  We can see from the example above, var will automatically replace the value that was previously defined with the new value, so after we have assigned the value to a variable, the variable can be replicated with a new value, of course, this will be a problem, if our script has been large and we forget that one of the variables has been assigned before. <br> - **Let** ```let``` is the new syntax introduced in **ECMA Script**, We will see what the difference is if we use let. I will make an example like the following. **Example 1: Normal** ``` javascript let title = "Thor ragnarok" let title = "Avenger infinity war" console.log(title) ```  - If we use es6 javascript, we don't need semicolon ```;``` anymore, because modern JavaScript is no longer used it. - We can see when we run compile ```npm run build```, babel automatically notifies there is an error, and the error occurs because the duplicate variable we use in the ```let```. So when we use ```let``` to create a variable, we cannot use the same name to create a new variable, of course this is safer if our script code is bigger, we don't need to worry about the variable being replaced. **Example 2 Scope** One of the advantages of ```let``` is that it can be used on certain ```scope{}```, So the value of the variable outside the ```scope {}``` *will not be replaced even with the same variable name*. I will give an example of using **var and let** as a comparison. **Use Var : Code** ``` javascript var title = "Thor ragnarok" // scope { var title = "Avenger infinity war" console.log(title) } console.log(title) ``` **Result:**  We can see if we use var the first value in assign is **"Thor ragnarok"**, but this value can be re-assigned even if it is assigned in ```block scope {}```. <br> **Use let : Code** ```javascript let title = "Thor ragnarok" // scope { let title = "Avenger infinity war" console.log(title) } console.log(title) ``` **Result**  We can see ```let``` does not replace the value of the variable that has been assigned for the first time, namely **'Thor ragnarok'**, ```let``` can be reused with the same name but must be within the ```scope {}```, that means the variable let is outside the ```scope {}``` will not affect the variable in the scope even though it has the same name, of course, this will be an advantage to avoid redefined variables. <br> - **Const** ```const``` is a type of variable whose value cannot be changed anymore, but this does not apply to the type of data object, because the properties of the object are **mutable**. We will see an example as below: **Use ```const```** ``` javascript // try to reassign const name = 'Duski' const name = 'Milia' //let see in the console console.log(name) ``` **Result**  We can see through the picture above, we cannot redeclare const variables with the same name. this will be an error, but this does not apply to type data objects. **Use ```const``` in object** What will happen if we use const on the data object type, we can see in the example below: ``` javascript const obj = { name : "Duski", age : 22 } //try to redeclare const obj = { name : "Millea", age : 21 } //do console console.log(obj) ``` **Result**  We see in the picture above **we still can't redeclare const obj because it can't**. Then what's the difference with let? ```const``` **on objects also can't redeclare,** but we can add data to objects because the nature of the data object type is **mutable**. let's look at the following example. **Add data to const objects** ``` javascript const obj = { name : "Duski", age : 22 } //add data obj.hobby = 'Traveling' //do console console.log(obj) ``` **Result**  We can see from the picture above on the type of data object we can add data to the object that have assigned. We have finished our lesson in this first tutorial, indeed this tutorial is quite basic for those of you who have known javascript for a long time, but my goal is junior in javascript and who want to know about the latest es6 javascript. I hope the explanations and examples I give are better and clearer than you can find in other tutorials and hopefully, you can help you manage es6 javascript, see you in the next tutorial about es6. thank you... #### Proof of work done https://github.com/milleaduski/learnEs6
author | duski.harahap |
---|---|
permlink | learn-es6-part-1-intro-setup-babel-and-understand-var-let-const |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorials","javascript","es6"],"image":["https://ipfs.busy.org/ipfs/QmYeTwyiZDxpBW1UuqNCKdSBgc6YjuC3if8vXE3xT8iTuR","https://ipfs.busy.org/ipfs/QmUZeb2G48Q5iRczP96Bp7dG18vC22MfgUvkd4CR4dPkFs","https://ipfs.busy.org/ipfs/QmchEdJKjUFYF2vgMNAwfCBA7kr74oW1VmMLLXRbsk8u26","https://ipfs.busy.org/ipfs/QmVeNjMofSJMAocy3A7D7B3R7YQbV9FTMsoAAGuc3n9iMV","https://ipfs.busy.org/ipfs/QmNjWSxdNZNgveTUu9a4xHE779pD6K7QnvwhieDbSNuLuw","https://ipfs.busy.org/ipfs/QmQ5uqvpdF8KK5oJH4LYDLfU7PrEbBdoeZaH9Fyx3Zpx3E","https://ipfs.busy.org/ipfs/QmPo6SdEN4zLTi4W7yzqEXDF4H4wReX5wZEeoThqA7Tvwm","https://ipfs.busy.org/ipfs/QmRqbJ2EwNHshYmSbGGZsL6qd44rj7GoVwSK78MB45fVrr","https://ipfs.busy.org/ipfs/QmSGLySUWWXHcer5qxugP6znMd2yboHRjhF2hLmNDELXTK","https://ipfs.busy.org/ipfs/QmfVh1w3btXcDuQhbxXib8AfUkSsvLfayyDkm4kwWsPC4L","https://ipfs.busy.org/ipfs/QmP9i9egdr32bZyYiaN6sVWuBHAqviUyjAA2psWKjrok6u","https://ipfs.busy.org/ipfs/Qma4qtK1wtrtjsjDie2TyVuwk7cSS9qHyWuDkiXvafH7go"],"links":["https://github.com/babel/babel","https://babeljs.io/","https://github.com/milleaduski/learnEs6"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-08-08 15:30:06 |
last_update | 2018-08-09 20:05:33 |
depth | 0 |
children | 4 |
last_payout | 2018-08-15 15:30:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 23.386 HBD |
curator_payout_value | 7.385 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,172 |
author_reputation | 60,094,717,098,672 |
root_title | "Learn Es6 part#1 Intro, Setup Babel, and Understand Var, Let, Const" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,538,536 |
net_rshares | 22,651,677,139,693 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcange | 0 | 28,290,084,660 | 3% | ||
ubg | 0 | 299,344,631 | 1% | ||
raphaelle | 0 | 1,924,099,524 | 3% | ||
aleister | 0 | 6,478,665,430 | 30% | ||
bachuslib | 0 | 18,594,524,685 | 100% | ||
renatomacedo | 0 | 179,696,731 | 30% | ||
jrawsthorne | 0 | 7,535,308,577 | 100% | ||
minnowhub | 0 | 68,281,903 | 1% | ||
pataty69 | 0 | 12,183,653,431 | 30% | ||
utopian-io | 0 | 21,347,484,084,965 | 13.6% | ||
yorkchinese | 0 | 82,331,679 | 1% | ||
mvanyi | 0 | 1,753,809,610 | 100% | ||
thinkingmind | 0 | 2,568,557,621 | 100% | ||
crypto-econom1st | 0 | 12,500,370,457 | 100% | ||
statsexpert | 0 | 2,135,619,171 | 40% | ||
lockout | 0 | 310,007,913 | 100% | ||
enlighted | 0 | 167,102,577 | 30% | ||
malia88 | 0 | 502,078,679 | 100% | ||
beetlevc | 0 | 849,447,771 | 3% | ||
davidisaevv | 0 | 501,612,456 | 100% | ||
ldv977 | 0 | 501,428,064 | 100% | ||
andykon | 0 | 501,138,257 | 100% | ||
sergeidurov | 0 | 501,690,691 | 100% | ||
vas30 | 0 | 501,582,730 | 100% | ||
byblik1811 | 0 | 498,875,960 | 100% | ||
sergoivika | 0 | 501,489,087 | 100% | ||
igorik | 0 | 501,274,214 | 100% | ||
czciborj | 0 | 498,625,088 | 100% | ||
manegasparyan | 0 | 498,672,440 | 100% | ||
emilimxitaryan | 0 | 501,895,914 | 100% | ||
karinegevorgyan | 0 | 499,147,941 | 100% | ||
dashakarapetyan | 0 | 502,699,395 | 100% | ||
elliygova | 0 | 499,652,732 | 100% | ||
patrickk97 | 0 | 499,650,181 | 100% | ||
miki20336 | 0 | 502,702,249 | 100% | ||
levongalstyan68 | 0 | 502,704,844 | 100% | ||
trovimov | 0 | 499,650,181 | 100% | ||
lobbyx | 0 | 502,699,395 | 100% | ||
boomhello | 0 | 499,655,569 | 100% | ||
greeglofchik | 0 | 499,652,732 | 100% | ||
iridiumnonagon | 0 | 502,699,395 | 100% | ||
poofwalrus | 0 | 502,702,249 | 100% | ||
rhodiumyellow | 0 | 499,650,181 | 100% | ||
hammerthreadbare | 0 | 499,652,732 | 100% | ||
nicemetric | 0 | 502,702,249 | 100% | ||
actmoo | 0 | 501,308,372 | 100% | ||
timedouble | 0 | 502,702,249 | 100% | ||
shanysevoy61 | 0 | 499,650,181 | 100% | ||
fedykosoy00 | 0 | 502,699,395 | 100% | ||
marina.yanalova | 0 | 499,655,569 | 100% | ||
ira.timirova91 | 0 | 499,658,148 | 100% | ||
elvinhender | 0 | 502,702,249 | 100% | ||
jhendrych | 0 | 499,652,732 | 100% | ||
kaczmareke | 0 | 499,655,569 | 100% | ||
backbonewriter | 0 | 499,655,569 | 100% | ||
lemonydietary | 0 | 499,652,732 | 100% | ||
publicchord | 0 | 499,655,569 | 100% | ||
wigeonfeatures | 0 | 502,702,249 | 100% | ||
ruralcapsule | 0 | 499,650,181 | 100% | ||
cupswavy | 0 | 499,655,569 | 100% | ||
calcreteprize | 0 | 503,466,610 | 100% | ||
shirtwhey | 0 | 502,702,249 | 100% | ||
weightyweary | 0 | 502,702,249 | 100% | ||
scudprocessor | 0 | 502,702,249 | 100% | ||
damsirenurse | 0 | 502,699,395 | 100% | ||
halftimehydrated | 0 | 499,652,732 | 100% | ||
resultgame | 0 | 502,702,249 | 100% | ||
layersand | 0 | 499,655,569 | 100% | ||
shortcrustmend | 0 | 499,655,569 | 100% | ||
bakedsalty | 0 | 501,000,520 | 100% | ||
describedreef | 0 | 502,704,844 | 100% | ||
greatestspicy | 0 | 499,652,732 | 100% | ||
mastobaev11 | 0 | 499,655,569 | 100% | ||
rakov23 | 0 | 499,655,569 | 100% | ||
ershov21 | 0 | 499,655,569 | 100% | ||
lapin124 | 0 | 501,039,451 | 100% | ||
joaoprobst | 0 | 296,070,726 | 30% | ||
hitmanchoi | 0 | 57,849,057 | 20% | ||
arttempavlov | 0 | 499,652,732 | 100% | ||
olgalestova | 0 | 499,650,181 | 100% | ||
marina.astakova | 0 | 499,652,732 | 100% | ||
vermilionlost | 0 | 499,650,181 | 100% | ||
antalovaelena | 0 | 499,652,732 | 100% | ||
metaboliss | 0 | 499,652,732 | 100% | ||
homebox567 | 0 | 499,652,732 | 100% | ||
rebrovivan | 0 | 499,650,181 | 100% | ||
trubadurkir | 0 | 499,650,181 | 100% | ||
dkapitonov | 0 | 502,699,395 | 100% | ||
ydomarev | 0 | 499,650,181 | 100% | ||
joinneutron | 0 | 499,652,732 | 100% | ||
shallowcuttle | 0 | 499,650,181 | 100% | ||
enlargedremove | 0 | 502,699,395 | 100% | ||
normapolice | 0 | 502,696,828 | 100% | ||
electricbrails | 0 | 499,650,181 | 100% | ||
drinkschin | 0 | 499,650,181 | 100% | ||
coalorebrunch | 0 | 499,650,181 | 100% | ||
icingexpenses | 0 | 499,650,181 | 100% | ||
potatovariscan | 0 | 499,650,181 | 100% | ||
partialbullhorn | 0 | 499,650,181 | 100% | ||
gifteddwarf | 0 | 502,696,828 | 100% | ||
bolttrite | 0 | 499,650,181 | 100% | ||
hastypeacock | 0 | 499,650,181 | 100% | ||
amplegranita | 0 | 502,696,828 | 100% | ||
owlrange | 0 | 502,696,828 | 100% | ||
silicaundo | 0 | 499,650,181 | 100% | ||
controlcagey | 0 | 499,650,181 | 100% | ||
heapimport | 0 | 499,650,181 | 100% | ||
crispsteal | 0 | 499,650,181 | 100% | ||
varvenickel | 0 | 499,650,181 | 100% | ||
raghandy | 0 | 499,650,181 | 100% | ||
cappedscramble | 0 | 499,650,181 | 100% | ||
fissionbutties | 0 | 499,650,181 | 100% | ||
glassescuckoo | 0 | 499,650,181 | 100% | ||
riskhardtofind | 0 | 502,696,828 | 100% | ||
bloodsiege | 0 | 502,694,023 | 100% | ||
haircuttogether | 0 | 499,647,392 | 100% | ||
oxbowworship | 0 | 502,696,828 | 100% | ||
alonecatdisc | 0 | 499,647,392 | 100% | ||
harmscribd | 0 | 499,647,392 | 100% | ||
brokenflywheel | 0 | 499,647,392 | 100% | ||
crayoncamera | 0 | 499,647,392 | 100% | ||
chutneyethanoic | 0 | 499,647,392 | 100% | ||
bubblyhexes | 0 | 499,647,392 | 100% | ||
fourosprey | 0 | 499,647,392 | 100% | ||
blandstatics | 0 | 502,694,023 | 100% | ||
dashlone | 0 | 499,647,392 | 100% | ||
hallfirst | 0 | 499,647,392 | 100% | ||
asamarin88 | 0 | 499,647,392 | 100% | ||
gorzhi3501 | 0 | 499,647,392 | 100% | ||
ikudelin | 0 | 499,647,392 | 100% | ||
fimschell | 0 | 499,647,392 | 100% | ||
ibogosov | 0 | 502,694,023 | 100% | ||
mpawlucz | 0 | 3,103,845,007 | 100% | ||
duarte9sousa | 0 | 17,750,264,586 | 10% | ||
xnorw | 0 | 584,078,430 | 100% | ||
munhenhos | 0 | 2,389,733,064 | 30% | ||
isabelpereira | 0 | 639,057,510 | 20% | ||
synonymsdiapir | 0 | 499,786,994 | 100% | ||
tiagoferezin | 0 | 182,538,097 | 30% | ||
almostegret | 0 | 499,586,052 | 100% | ||
ecotypedatabase | 0 | 499,586,052 | 100% | ||
bypassburger | 0 | 499,586,052 | 100% | ||
anaerobepicket | 0 | 502,629,709 | 100% | ||
glideamazon | 0 | 502,629,709 | 100% | ||
shortsminge | 0 | 499,583,468 | 100% | ||
padadvice | 0 | 499,578,403 | 100% | ||
imaginaryclap | 0 | 502,624,613 | 100% | ||
elitestrake | 0 | 499,578,403 | 100% | ||
steem-ua | 0 | 1,109,172,218,728 | 50.98% | ||
narkojen | 0 | 501,725,692 | 100% | ||
polfilds | 0 | 501,722,953 | 100% | ||
kmakbrayd | 0 | 498,682,208 | 100% | ||
kennetluk | 0 | 501,722,953 | 100% | ||
atihonov1990 | 0 | 501,717,541 | 100% | ||
chepmengeri | 0 | 501,714,782 | 100% | ||
denielharvi | 0 | 501,714,782 | 100% | ||
kristiansim | 0 | 501,714,782 | 100% | ||
umaykl | 0 | 498,659,206 | 100% | ||
pashenkabutenev | 0 | 498,659,206 | 100% | ||
semenovyx83 | 0 | 501,699,811 | 100% | ||
sabitovv | 0 | 501,699,811 | 100% | ||
ssaffinn | 0 | 501,699,811 | 100% | ||
evgeniy.pavlenko | 0 | 501,686,298 | 100% | ||
yulya.zaharova | 0 | 498,643,024 | 100% | ||
anmarch1986 | 0 | 498,643,024 | 100% | ||
aprokopenko1990 | 0 | 501,683,530 | 100% | ||
dima.reutov | 0 | 501,678,049 | 100% | ||
mbond198 | 0 | 498,632,480 | 100% | ||
bors.hl88 | 0 | 498,640,162 | 100% | ||
perlov11 | 0 | 501,672,922 | 100% | ||
mkrilov | 0 | 501,672,922 | 100% | ||
mladogin | 0 | 501,672,922 | 100% | ||
ismirnov88 | 0 | 501,678,049 | 100% | ||
zelc | 0 | 501,672,922 | 100% | ||
officialex | 0 | 501,672,922 | 100% |
Thank you for your contribution. - We recommend that you edit your tutorial and place the babel repository. ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-duskiharahap-learn-es6-part-1-intro-setup-babel-and-understand-var-let-const-20180808t223100506z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-08-08 22:31:00 |
last_update | 2018-08-09 19:46:18 |
depth | 1 |
children | 2 |
last_payout | 2018-08-15 22:31:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 599,460,462,895,094 |
root_title | "Learn Es6 part#1 Intro, Setup Babel, and Understand Var, Let, Const" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,571,265 |
net_rshares | 16,023,679,079 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
espoem | 0 | 15,720,647,116 | 15% | ||
mops2e | 0 | 303,031,963 | 10% |
I've edited the repo mod.. @portugalcoin
author | duski.harahap |
---|---|
permlink | re-portugalcoin-re-duskiharahap-learn-es6-part-1-intro-setup-babel-and-understand-var-let-const-20180809t200851211z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1","users":["portugalcoin"]} |
created | 2018-08-09 20:08:54 |
last_update | 2018-08-09 20:09:27 |
depth | 2 |
children | 1 |
last_payout | 2018-08-16 20:08:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 60,094,717,098,672 |
root_title | "Learn Es6 part#1 Intro, Setup Babel, and Understand Var, Let, Const" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,678,442 |
net_rshares | 0 |
Thank you for your contribution. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/21321313). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-duskiharahap-re-portugalcoin-re-duskiharahap-learn-es6-part-1-intro-setup-babel-and-understand-var-let-const-20180809t211432255z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/21321313","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-08-09 21:14:33 |
last_update | 2018-08-09 21:14:33 |
depth | 3 |
children | 0 |
last_payout | 2018-08-16 21:14:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 524 |
author_reputation | 599,460,462,895,094 |
root_title | "Learn Es6 part#1 Intro, Setup Babel, and Understand Var, Let, Const" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,683,280 |
net_rshares | 0 |
Hey @duski.harahap **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-learn-es6-part-1-intro-setup-babel-and-understand-var-let-const-20180812t214508z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-08-12 21:45:09 |
last_update | 2018-08-12 21:45:09 |
depth | 1 |
children | 0 |
last_payout | 2018-08-19 21:45:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 305 |
author_reputation | 152,955,367,999,756 |
root_title | "Learn Es6 part#1 Intro, Setup Babel, and Understand Var, Let, Const" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 67,991,892 |
net_rshares | 16,519,965,092 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
espoem | 0 | 16,216,933,129 | 15% | ||
mops2e | 0 | 303,031,963 | 10% |