<center></center> <p> In this post, I'll talk about a concept that may be overlooked by most beginner and sometimes professional programmers: prototypes. Then I'll introduce some methods in ECMAScript 5 because they're very useful. </p> <h2> What is a prototype? </h2> <p> In fact, all JavaScript objects inherit their methods and properties from a prototype. These prototypes, as their name suggests, are prototypes and outlines for a class of objects. </p> <p> In the <a href="https://ecency.com/hive-169321/@albro/constructor-in-javascript-by-albro">previous session</a>, I talked about object constructors and gave you the following example: </p> <pre><code class="language-javascript"><!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p id="demo"></p> <script> function Person(username, rc, age, eye) { this.username = username; this.rc = rc; this.age = age; this.eyeColor = eye; } var myFriends = new Person("ocdb", 100, 5, "blue"); var myLove = new Person("leo.voter",100,48,"green"); document.getElementById("demo").innerHTML = "My Friend is " + myFriends.age + ". My love is " + myLove.age; </script> </body> </html></code></pre> <center></center> <p> We cannot add our desired properties to the constructor, and the following code was incorrect: </p> <pre><code class="language-javascript">Person.nationality = "English";</code></pre> <p> Rather, we should have added it manually to the constructor function itself: </p> <pre><code class="language-javascript">function Person(username, rc, age, eye) { this.username = username; this.rc = rc; this.age = age; this.eyeColor = eye; this.nationality = "English"; }</code></pre> <h3> Inherit from prototype </h3> <p> All JavaScript objects inherit their methods and properties from a prototype, but we did not specify which prototype: </p> <ul style="list-style-type:disc;"> <li> <code>Dates</code> inherit from <code>Date.prototype</code>. </li> <li> <code>Arrays</code> inherit from <code>Array.prototype</code>. </li> <li> <code>Persons</code> (the same as our example) inherit from <code>Person.prototype</code>. </li> </ul> <p> So the general rule is that an <code>object</code> inherits from <code>Object.prototype</code>. </p> <h3> Examples of using prototype </h3> <p> Now that we have learned about the prototype, you should know that we can access the constructor function through it. </p> <p> In this example, I want to use prototype to create a new property that did not exist in our object. </p> <pre><code class="language-javascript"><!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p id="demo"></p> <script> function Person(username, rc, age, eye) { this.username = username; this.rc = rc; this.age = age; this.eyeColor = eye; } Person.prototype.nationality = "English"; var myFriends = new Person("ocdb", 100, 5, "blue"); document.getElementById("demo").innerHTML = "The nationality of my friend is " + myFriends.nationality; </script> </body> </html></code></pre> <center></center> <p> As you can see, I easily added the <code>nationality</code> attribute. </p> <p> I do the same to add methods: </p> <pre><code class="language-javascript"><!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p id="demo"></p> <script> function Person(username, rc, age, eye) { this.username = username; this.rc = rc; this.age = age; this.eyeColor = eye; } Person.prototype.details = function() { return this.username + " RC = " + this.rc }; var myFriends = new Person("ocdb", 100, 5, "blue"); document.getElementById("demo").innerHTML = "The details of my friend is " + myFriends.details(); </script> </body> </html></code></pre> <center></center> <p> <strong>Warning:</strong> <i>only change your own prototypes! Do not touch JavaScript's default prototypes and its standard objects, because the whole program will be messed up.</i> </p> <h3> ECMAScript 5 methods </h3> <p> In ECMAScript 5, methods for working with objects were introduced. I want to say the most important ones here: </p> <pre><code class="language-javascript">// Add or change a property of an object Object.defineProperty(object, property, descriptor) // Add or change several properties Object.defineProperties(object, descriptors) // Accessing properties Object.getOwnPropertyDescriptor(object, property) // Return all properties as an array Object.getOwnPropertyNames(object) // Return numeric properties in the form of an array Object.keys(object) // access the prototype Object.getPrototypeOf(object) // Denying permission to add properties to an object Object.preventExtensions(object) // Returns true if we are allowed to add properties to an object Object.isExtensible(object) // Denies the permission to change the properties themselves (and not the values). Object.seal(object) // Returns true if we are not allowed to add properties to an object Object.isSealed(object) // Prevents any changes to the object Object.freeze(object) // Returns true if we are not allowed to make changes to the value of the object Object.isFrozen(object)</code></pre> <h3> Changing the value of a property </h3> <p> The general structure of the code is as follows: </p> <pre><code class="language-javascript">Object.defineProperty(object, property, {value : value})</code></pre> <p> Example: </p> <pre><code class="language-javascript">var person = { username : "leo.voter", rc : "90", language : "EN" }; // Change a property Object.defineProperty(person, "language", {value : "NO"});</code></pre> <h3> Change metadata </h3> <p> The metadata change is as follows: </p> <pre><code class="language-javascript">writable : true // The value of the properties can be changed enumerable : true // Properties are countable configurable : true // Properties can be configured and adjusted.</code></pre> <p> We also have a False value for each of them, which will be the opposite of the above explanation. </p> <h3> Get all the properties </h3> <p> To get all the properties of an object, I can do this: </p> <pre><code class="language-javascript">var person = { username : "leo.voter", rc : "90", language : "EN" }; Object.defineProperty(person, "language", {enumerable:false}); Object.getOwnPropertyNames(person); // Returns an array of all properties</code></pre> <h3> Definition of Getter and Setter </h3> <p> In the previous parts, I talked about <code>Getter</code> and <code>Setter</code>, but you should know that you can also define them with <code>Object.defineProperty()</code>: </p> <pre><code class="language-javascript">// Create an object var person = { username : "leo.voter", rc : "90", language : "EN" }; // Define a getter Object.defineProperty(person, "details", { get : function () {return this.username + " RC = " + this.rc;} });</code></pre> <p> I hope you enjoyed this post. If you liked this post, don't forget to upvote! </p> <p> </p> <p> [Hive: @albro] </p>
author | albro | ||||||
---|---|---|---|---|---|---|---|
permlink | javascript-prototypes-es5-and-tricks-by-albro | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"peakd/2023.11.3","format":"markdown","description":"In this post, I'll talk about a concept that may be overlooked by most programmers: prototypes and some methods in ES5.","tags":["programming","development","gosh","threads","neoxian","tricks","hive-engine","chessbrothers","stem","leofinance"],"users":["albro"],"image":["https://files.peakd.com/file/peakd-hive/albro/23viR9N3TuF2GVayLi3syUEP13UKJxtKrc2qfnhtXyeKTMiXe8cSorM4yHZpA4eog6M9A.png","https://files.peakd.com/file/peakd-hive/albro/23u6YysF9NMXiARSdP3TsxGGwxryR5Wm1AGbWB9SWQckr2D14WiYxNEcJy2CfEjvK3g64.png","https://files.peakd.com/file/peakd-hive/albro/23uRLPLApFg7LnmXo4AZcGV2wDmBRBk6LxfguoLLsgQhf4csqdn9baeQWZS3Lgj26Cvr3.png","https://files.peakd.com/file/peakd-hive/albro/23u6Z4abZkgLkvLYt8dQ9aN38khJTnxwTj6RefrGxsbVrQGdQcPeBaj2KXv5EeRYnEe36.png"]}" | ||||||
created | 2023-12-22 19:33:00 | ||||||
last_update | 2023-12-22 19:33:00 | ||||||
depth | 0 | ||||||
children | 4 | ||||||
last_payout | 2023-12-29 19:33:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 3.293 HBD | ||||||
curator_payout_value | 3.271 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 7,839 | ||||||
author_reputation | 30,477,419,385,789 | ||||||
root_title | "javascript prototypes, ES5 & Tricks By albro" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 129,907,039 | ||||||
net_rshares | 13,772,315,075,233 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 943,815,538 | 0.18% | ||
justtryme90 | 0 | 579,900,664 | 30% | ||
eric-boucher | 0 | 6,523,282,991 | 1.2% | ||
thecryptodrive | 0 | 28,518,732,852 | 0.48% | ||
roelandp | 0 | 127,291,413,865 | 15% | ||
cloh76 | 0 | 1,699,411,276 | 1.2% | ||
jeffjagoe | 0 | 2,159,887,746 | 0.5% | ||
arcange | 0 | 1,058,150,974,784 | 5% | ||
lichtblick | 0 | 1,087,954,104 | 0.72% | ||
sunshine | 0 | 86,841,592,292 | 15% | ||
lordvader | 0 | 14,967,520,519 | 2.4% | ||
rmach | 0 | 6,657,532,384 | 15% | ||
lemouth | 0 | 826,509,393,698 | 30% | ||
lamouthe | 0 | 2,365,621,233 | 30% | ||
tfeldman | 0 | 2,326,706,300 | 1.2% | ||
sergiomendes | 0 | 561,478,544 | 1.2% | ||
metabs | 0 | 3,306,613,876 | 30% | ||
mcsvi | 0 | 127,555,997,972 | 50% | ||
lk666 | 0 | 71,966,197,757 | 100% | ||
cnfund | 0 | 4,937,408,171 | 2.4% | ||
justyy | 0 | 13,337,832,771 | 2.4% | ||
michelle.gent | 0 | 1,433,903,257 | 0.48% | ||
curie | 0 | 161,369,885,212 | 2.4% | ||
modernzorker | 0 | 1,646,083,584 | 1.68% | ||
moretea | 0 | 585,773,586 | 2.4% | ||
techslut | 0 | 80,772,635,480 | 12% | ||
steemstem | 0 | 555,575,135,171 | 30% | ||
ancolie | 0 | 514,752,124 | 1.13% | ||
edb | 0 | 2,300,542,366 | 3% | ||
yadamaniart | 0 | 1,493,865,967 | 1.2% | ||
bigtakosensei | 0 | 746,779,647 | 0.6% | ||
walterjay | 0 | 203,153,955,859 | 15% | ||
valth | 0 | 4,735,494,311 | 15% | ||
metroair | 0 | 11,010,798,669 | 2.4% | ||
chiren | 0 | 19,210,138,233 | 100% | ||
driptorchpress | 0 | 908,807,894 | 0.6% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
dna-replication | 0 | 1,147,458,870 | 30% | ||
privex | 0 | 1,472,640,172 | 2.4% | ||
dhimmel | 0 | 159,799,663,494 | 7.5% | ||
oluwatobiloba | 0 | 886,278,445 | 30% | ||
detlev | 0 | 6,228,948,134 | 0.72% | ||
lizanomadsoul | 0 | 4,741,281,468 | 2% | ||
federacion45 | 0 | 3,716,748,767 | 1.2% | ||
gamersclassified | 0 | 1,711,127,022 | 1.2% | ||
iansart | 0 | 1,968,017,418 | 1.2% | ||
forykw | 0 | 5,916,789,379 | 1.2% | ||
mobbs | 0 | 45,903,248,619 | 15% | ||
eliel | 0 | 1,167,393,531 | 2.4% | ||
jerrybanfield | 0 | 8,011,299,825 | 2.4% | ||
rt395 | 0 | 2,049,707,561 | 1.5% | ||
bitrocker2020 | 0 | 3,820,951,910 | 0.36% | ||
sustainablyyours | 0 | 10,559,496,236 | 15% | ||
erick1 | 0 | 35,440,475,818 | 80% | ||
helo | 0 | 840,388,564 | 15% | ||
arunava | 0 | 7,587,337,370 | 0.96% | ||
samminator | 0 | 20,436,542,581 | 15% | ||
enjar | 0 | 20,387,630,848 | 2.16% | ||
mahdiyari | 0 | 335,577,387,533 | 80% | ||
lorenzor | 0 | 1,308,351,343 | 50% | ||
firstamendment | 0 | 88,989,735,052 | 50% | ||
derosnec | 0 | 840,029,492 | 4% | ||
paulag | 0 | 12,040,387,188 | 10% | ||
alexander.alexis | 0 | 18,405,631,330 | 30% | ||
jayna | 0 | 3,371,572,535 | 0.48% | ||
deanlogic | 0 | 582,923,752 | 1.2% | ||
guchtere | 0 | 489,462,821 | 4% | ||
sirjaxxy | 0 | 474,798,370 | 50% | ||
liuke96player | 0 | 6,001,118,001 | 25% | ||
princessmewmew | 0 | 3,314,405,550 | 1.2% | ||
joeyarnoldvn | 0 | 474,030,314 | 1.47% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
gunthertopp | 0 | 32,833,069,031 | 0.6% | ||
pipiczech | 0 | 1,025,420,860 | 2.4% | ||
touchman | 0 | 176,133,414,863 | 100% | ||
empath | 0 | 1,797,809,841 | 1.2% | ||
minnowbooster | 0 | 1,077,413,836,057 | 20% | ||
felt.buzz | 0 | 4,431,067,967 | 0.6% | ||
howo | 0 | 1,000,142,627,765 | 30% | ||
tsoldovieri | 0 | 3,149,874,737 | 15% | ||
steemwizards | 0 | 1,936,529,139 | 2.4% | ||
neumannsalva | 0 | 2,075,304,568 | 1.2% | ||
stayoutoftherz | 0 | 69,584,697,075 | 0.6% | ||
abigail-dantes | 0 | 11,092,873,615 | 30% | ||
coindevil | 0 | 1,255,596,305 | 1.92% | ||
pixelfan | 0 | 55,721,488,274 | 6% | ||
zonguin | 0 | 1,583,904,542 | 7.5% | ||
investingpennies | 0 | 8,710,768,898 | 2.4% | ||
khalil319 | 0 | 1,792,440,011 | 10% | ||
martibis | 0 | 591,185,917 | 0.72% | ||
jasonbu | 0 | 3,170,173,351 | 2.5% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
redrica | 0 | 886,074,520 | 1.2% | ||
iamphysical | 0 | 777,158,464 | 90% | ||
dipom98 | 0 | 481,450,777 | 1.2% | ||
zyx066 | 0 | 1,985,732,816 | 0.72% | ||
revo | 0 | 4,979,886,453 | 2.4% | ||
azulear | 0 | 1,187,985,744 | 100% | ||
psicoluigi | 0 | 752,022,596 | 50% | ||
rocky1 | 0 | 343,802,938,071 | 0.36% | ||
thelordsharvest | 0 | 2,032,377,285 | 2.4% | ||
sumant | 0 | 2,048,507,980 | 1.2% | ||
aidefr | 0 | 3,191,276,712 | 15% | ||
torico | 0 | 621,561,020 | 0.79% | ||
therealwolf | 0 | 11,643,827,915 | 1.2% | ||
fatman | 0 | 9,210,574,001 | 2% | ||
yangyanje | 0 | 3,413,365,843 | 1.2% | ||
splash-of-angs63 | 0 | 6,294,346,861 | 60% | ||
cryptononymous | 0 | 817,608,952 | 1.2% | ||
jlsplatts | 0 | 22,749,204,483 | 2% | ||
meno | 0 | 10,343,122,537 | 1.2% | ||
buttcoins | 0 | 955,874,662 | 0.48% | ||
technicalside | 0 | 28,750,716,537 | 25% | ||
steemed-proxy | 0 | 480,779,312,981 | 2.4% | ||
fatkat | 0 | 609,202,654 | 1.19% | ||
doifeellucky | 0 | 1,684,816,550 | 1.2% | ||
enzor | 0 | 1,897,337,870 | 30% | ||
bartosz546 | 0 | 2,606,970,961 | 1.2% | ||
dandays | 0 | 14,546,251,613 | 0.96% | ||
notb4mycoffee | 0 | 1,479,133,013 | 2.4% | ||
silverwhale | 0 | 594,577,186 | 2.16% | ||
socent | 0 | 992,999,030 | 15% | ||
sunsea | 0 | 1,140,533,049 | 1.2% | ||
postpromoter | 0 | 702,320,914,793 | 30% | ||
omstavan | 0 | 7,439,831,413 | 100% | ||
bluefinstudios | 0 | 1,573,313,602 | 0.72% | ||
steveconnor | 0 | 2,124,079,624 | 1.2% | ||
sankysanket18 | 0 | 678,094,397 | 15% | ||
dbddv01 | 0 | 1,075,979,156 | 7.5% | ||
paulmoon410 | 0 | 1,728,578,836 | 10% | ||
nicole-st | 0 | 1,023,124,638 | 1.2% | ||
smartsteem | 0 | 59,149,501,263 | 1.2% | ||
jasimg | 0 | 696,742,350 | 100% | ||
smitop | 0 | 10,715,835,388 | 100% | ||
aboutcoolscience | 0 | 41,992,096,531 | 30% | ||
sandracarrascal | 0 | 492,498,169 | 50% | ||
helpie | 0 | 9,688,203,685 | 8% | ||
kenadis | 0 | 8,185,991,306 | 30% | ||
madridbg | 0 | 14,920,098,437 | 30% | ||
robotics101 | 0 | 937,882,229 | 3.25% | ||
lpv | 0 | 1,235,633,810 | 3.75% | ||
punchline | 0 | 3,515,484,835 | 2.4% | ||
markaustin | 0 | 795,827,802 | 5% | ||
gentleshaid | 0 | 1,266,050,457 | 15% | ||
onestrong | 0 | 511,724,774 | 1.2% | ||
adelepazani | 0 | 643,029,016 | 0.48% | ||
soulturtle | 0 | 474,463,616 | 1.6% | ||
anggaariska | 0 | 1,035,114,524 | 50% | ||
r00sj3 | 0 | 52,132,653,266 | 15% | ||
sco | 0 | 8,879,585,474 | 30% | ||
ennyta | 0 | 958,048,531 | 50% | ||
brotherhood | 0 | 8,794,545,453 | 2.4% | ||
juecoree | 0 | 2,341,373,140 | 21% | ||
stahlberg | 0 | 524,236,986 | 1.2% | ||
gabrielatravels | 0 | 851,790,913 | 0.84% | ||
vjap55 | 0 | 7,679,561,589 | 100% | ||
nerdtopiade | 0 | 553,674,880 | 2.75% | ||
dudeontheweb | 0 | 1,770,692,501 | 1.75% | ||
carn | 0 | 1,566,992,799 | 2.16% | ||
eliaschess333 | 0 | 42,959,462,974 | 100% | ||
branbello | 0 | 704,268,896 | 15% | ||
bartheek | 0 | 9,844,867,460 | 2.4% | ||
hetty-rowan | 0 | 1,840,616,732 | 1.2% | ||
ydavgonzalez | 0 | 1,658,851,069 | 10% | ||
intrepidphotos | 0 | 6,974,287,536 | 22.5% | ||
fineartnow | 0 | 1,737,936,267 | 1.2% | ||
hijosdelhombre | 0 | 44,687,666,615 | 40% | ||
slacktmusic | 0 | 728,498,874 | 4% | ||
yoghurt | 0 | 621,476,203 | 2.4% | ||
steemvault | 0 | 942,535,641 | 2.4% | ||
communitybank | 0 | 1,686,871,691 | 2.4% | ||
fragmentarion | 0 | 17,406,322,336 | 30% | ||
bennettitalia | 0 | 826,625,608 | 1.2% | ||
utube | 0 | 1,851,299,190 | 2.4% | ||
amjadsharif | 0 | 1,817,624,298 | 30% | ||
manncpt | 0 | 3,330,539,102 | 2% | ||
dynamicrypto | 0 | 1,344,825,652 | 1% | ||
neneandy | 0 | 2,737,208,446 | 2.4% | ||
marc-allaria | 0 | 1,935,083,869 | 1.2% | ||
jnmarteau | 0 | 790,132,575 | 2% | ||
sportscontest | 0 | 2,408,198,624 | 2.4% | ||
gribouille | 0 | 1,424,213,134 | 30% | ||
pandasquad | 0 | 6,344,444,663 | 2.4% | ||
jakeeyexe | 0 | 657,634,558 | 50% | ||
cool08 | 0 | 1,422,549,893 | 15% | ||
stemng | 0 | 532,489,391 | 15% | ||
kingabesh | 0 | 582,602,556 | 15% | ||
miguelangel2801 | 0 | 767,709,744 | 50% | ||
mproxima | 0 | 1,015,552,877 | 1.2% | ||
fantasycrypto | 0 | 870,799,004 | 1.2% | ||
didic | 0 | 803,105,340 | 1.2% | ||
warpedpoetic | 0 | 871,329,109 | 2.4% | ||
jossduarte | 0 | 558,053,055 | 1.2% | ||
emiliomoron | 0 | 4,543,844,357 | 15% | ||
yjcps | 0 | 5,848,764,583 | 100% | ||
dexterdev | 0 | 1,209,065,163 | 15% | ||
photohunt | 0 | 1,729,812,311 | 2.4% | ||
geopolis | 0 | 1,978,855,850 | 30% | ||
ajfernandez | 0 | 777,661,415 | 100% | ||
robertbira | 0 | 3,221,481,588 | 7.5% | ||
alexdory | 0 | 4,459,897,674 | 30% | ||
takowi | 0 | 38,765,798,812 | 2.4% | ||
irgendwo | 0 | 9,705,754,739 | 2.4% | ||
samostically | 0 | 754,590,040 | 50% | ||
flugschwein | 0 | 0 | 25.5% | ||
cyprianj | 0 | 109,475,656,827 | 100% | ||
kieranstone | 0 | 689,715,055 | 0.79% | ||
melvin7 | 0 | 48,240,578,107 | 15% | ||
francostem | 0 | 4,151,818,289 | 30% | ||
russellstockley | 0 | 667,709,503 | 0.6% | ||
endopediatria | 0 | 691,928,413 | 20% | ||
croctopus | 0 | 1,438,186,985 | 100% | ||
jjerryhan | 0 | 2,395,692,455 | 1.2% | ||
jagoe | 0 | 40,826,178,395 | 24% | ||
zipporah | 0 | 1,151,755,528 | 0.48% | ||
leomarylm | 0 | 826,050,451 | 1.2% | ||
superlotto | 0 | 6,388,464,529 | 2.4% | ||
doomsdaychassis | 0 | 1,440,418,159 | 8% | ||
bscrypto | 0 | 6,263,350,738 | 1.2% | ||
vonaurolacu | 0 | 779,563,318 | 1.2% | ||
movingman | 0 | 522,887,859 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
jeronimorubio | 0 | 821,901,331 | 8% | ||
tomastonyperez | 0 | 16,527,489,747 | 50% | ||
bil.prag | 0 | 1,026,566,981 | 0.12% | ||
elvigia | 0 | 10,827,733,524 | 50% | ||
sanderjansenart | 0 | 2,390,422,548 | 1.2% | ||
comidinhas | 0 | 695,890,511 | 100% | ||
vittoriozuccala | 0 | 915,401,878 | 1.2% | ||
laxam | 0 | 5,508,253,907 | 100% | ||
qberry | 0 | 1,714,807,073 | 1.2% | ||
frissonsteemit | 0 | 518,955,267 | 1.2% | ||
kanrat | 0 | 1,049,108,802 | 1.62% | ||
rambutan.art | 0 | 873,060,679 | 2.4% | ||
greddyforce | 0 | 1,809,553,008 | 0.88% | ||
flyerchen | 0 | 538,524,111 | 1.2% | ||
braaiboy | 0 | 4,508,310,844 | 1.2% | ||
ryenneleow | 0 | 6,538,212,664 | 90% | ||
gadrian | 0 | 193,789,103,756 | 22.5% | ||
fotogruppemunich | 0 | 1,177,641,179 | 0.6% | ||
therising | 0 | 42,898,603,458 | 2.4% | ||
cryptocoinkb | 0 | 926,419,778 | 1.2% | ||
gifty-e | 0 | 711,812,478 | 80% | ||
scruffy23 | 0 | 20,035,972,132 | 50% | ||
eniolw | 0 | 17,050,726,361 | 100% | ||
de-stem | 0 | 16,541,903,230 | 29.7% | ||
serylt | 0 | 1,358,532,529 | 29.4% | ||
misterlangdon | 0 | 1,282,632,695 | 50% | ||
josedelacruz | 0 | 4,730,033,329 | 50% | ||
achimmertens | 0 | 6,993,295,508 | 1.2% | ||
camuel | 0 | 7,094,935,299 | 25% | ||
calebotamus | 0 | 4,019,032,001 | 100% | ||
erickyoussif | 0 | 649,722,561 | 100% | ||
meanbees | 0 | 40,375,446,285 | 100% | ||
killerteesuk | 0 | 896,913,455 | 99% | ||
indigoocean | 0 | 486,987,785 | 1.2% | ||
primersion | 0 | 372,810,558,695 | 20% | ||
deholt | 0 | 1,725,617,154 | 25.5% | ||
youraverageguy | 0 | 475,577,202 | 50% | ||
robmolecule | 0 | 22,408,205,342 | 10% | ||
anneporter | 0 | 1,146,258,543 | 9% | ||
celinavisaez | 0 | 10,264,892,593 | 30% | ||
pladozero | 0 | 29,500,835,906 | 10% | ||
minerthreat | 0 | 1,552,810,515 | 1.2% | ||
davidesimoncini | 0 | 371,691,321 | 100% | ||
temitayo-pelumi | 0 | 2,749,008,225 | 30% | ||
free-reign | 0 | 1,418,020,999 | 1.2% | ||
andrick | 0 | 834,817,366 | 50% | ||
doctor-cog-diss | 0 | 27,164,675,487 | 30% | ||
marcuz | 0 | 1,026,778,171 | 15% | ||
acont | 0 | 6,952,934,163 | 50% | ||
uche-nna | 0 | 2,966,530,398 | 1.92% | ||
citizendog | 0 | 2,119,174,547 | 2.4% | ||
cheese4ead | 0 | 2,004,400,543 | 1.2% | ||
mafufuma | 0 | 6,946,071,179 | 1% | ||
apshamilton | 0 | 6,008,333,162 | 0.3% | ||
gaottantacinque | 0 | 462,618,077 | 100% | ||
nattybongo | 0 | 55,336,242,128 | 30% | ||
drsensor | 0 | 645,914,458 | 24% | ||
roozeec | 0 | 499,271,441 | 10% | ||
revueh | 0 | 809,819,728 | 15% | ||
bflanagin | 0 | 946,680,580 | 0.6% | ||
ubaldonet | 0 | 2,597,960,474 | 80% | ||
armandosodano | 0 | 1,483,972,594 | 1.2% | ||
melor9 | 0 | 673,989,003 | 4% | ||
lillywilton | 0 | 2,095,701,657 | 20% | ||
acousticguitar | 0 | 14,096,383,275 | 50% | ||
hamismsf | 0 | 1,961,234,332 | 0.3% | ||
gerdtrudroepke | 0 | 18,047,861,847 | 21% | ||
goblinknackers | 0 | 74,712,754,691 | 7% | ||
anttn | 0 | 13,861,948,874 | 1.2% | ||
vixmemon | 0 | 721,699,535 | 1.8% | ||
yaelg | 0 | 491,685,270 | 0.72% | ||
kylealex | 0 | 4,704,018,087 | 10% | ||
gasaeightyfive | 0 | 823,211,936 | 100% | ||
cubapl | 0 | 1,864,189,808 | 15% | ||
orlandogonzalez | 0 | 3,289,420,005 | 25% | ||
voxmortis | 0 | 553,288,900 | 0.32% | ||
fran.frey | 0 | 4,067,723,060 | 50% | ||
perpetuum-lynx | 0 | 900,773,046 | 29.4% | ||
jrevilla | 0 | 633,422,177 | 100% | ||
thelittlebank | 0 | 8,861,646,281 | 1.2% | ||
pboulet | 0 | 61,389,408,636 | 24% | ||
marcocasario | 0 | 54,985,633,975 | 11.64% | ||
stem-espanol | 0 | 8,064,931,659 | 100% | ||
vimm | 0 | 58,520,835,683 | 5% | ||
cribbio | 0 | 1,848,189,865 | 100% | ||
cliffagreen | 0 | 4,948,836,545 | 10% | ||
aleestra | 0 | 12,426,769,260 | 80% | ||
rowell | 0 | 628,619,474 | 2.4% | ||
palasatenea | 0 | 1,453,087,117 | 1.2% | ||
the.success.club | 0 | 1,322,100,641 | 1.2% | ||
xmauron3 | 0 | 829,175,442 | 1.2% | ||
meanroosterfarm | 0 | 573,851,950 | 15% | ||
merlin7 | 0 | 4,765,640,854 | 2.4% | ||
brianoflondon | 0 | 35,171,260,918 | 0.6% | ||
giulyfarci52 | 0 | 1,661,899,948 | 50% | ||
esthersanchez | 0 | 4,293,062,690 | 60% | ||
kristall97 | 0 | 3,032,387,883 | 100% | ||
cwow2 | 0 | 216,302,198,372 | 57% | ||
steemcryptosicko | 0 | 3,808,180,802 | 0.48% | ||
certain | 0 | 520,527,266 | 0.28% | ||
multifacetas | 0 | 664,483,690 | 1.2% | ||
cakemonster | 0 | 1,325,515,499 | 2.4% | ||
cowpatty | 0 | 604,020,828 | 15% | ||
stem.witness | 0 | 1,780,369,207 | 30% | ||
hiddendragon | 0 | 637,992,302 | 38% | ||
chisdealhd | 0 | 7,413,065,745 | 30% | ||
chipdip | 0 | 793,030,929 | 10% | ||
theskmeister | 0 | 521,608,620 | 100% | ||
jpbliberty | 0 | 3,575,136,791 | 0.6% | ||
double-negative | 0 | 522,210,182 | 20% | ||
shainemata | 0 | 13,652,118,638 | 5% | ||
vaultec | 0 | 6,524,739,107 | 12% | ||
steemstorage | 0 | 2,968,689,967 | 2.4% | ||
jtm.support | 0 | 2,294,722,982 | 30% | ||
crowdwitness | 0 | 81,024,500,357 | 15% | ||
helpie-caster | 0 | 1,401,848,071 | 3.25% | ||
markwannabee | 0 | 474,241,251 | 100% | ||
hairgistix | 0 | 1,378,643,151 | 1.2% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
proxy-pal | 0 | 547,665,276 | 2.4% | ||
deriyon | 0 | 476,875,196 | 100% | ||
hashkings | 0 | 35,386,772,967 | 25% | ||
aaronkroeblinger | 0 | 116,749,734,305 | 50% | ||
cryptofiloz | 0 | 3,846,235,627 | 2.4% | ||
projectdignity | 0 | 77,561,302 | 5.4% | ||
dawnoner | 0 | 831,647,090 | 0.24% | ||
photographercr | 0 | 1,153,556,553 | 0.48% | ||
larsito | 0 | 5,235,843,391 | 60% | ||
epicdice | 0 | 799,186,436 | 0.72% | ||
iamsaray | 0 | 511,560,270 | 1.2% | ||
robibasa | 0 | 18,022,081,695 | 10% | ||
beerlover | 0 | 925,045,787 | 0.72% | ||
tinyhousecryptos | 0 | 478,706,228 | 5% | ||
rtron86 | 0 | 6,257,941,617 | 50% | ||
tggr | 0 | 572,163,581 | 1.2% | ||
aicu | 0 | 600,059,653 | 2.4% | ||
zeruxanime | 0 | 648,685,015 | 15% | ||
afarina46 | 0 | 807,329,393 | 15% | ||
waraira777 | 0 | 538,162,539 | 15% | ||
reggaesteem | 0 | 498,581,953 | 5% | ||
capp | 0 | 11,941,123,547 | 50% | ||
tokensink | 0 | 1,379,853,091 | 2.4% | ||
beta500 | 0 | 1,615,893,370 | 2.4% | ||
nazer | 0 | 1,146,232,858 | 15% | ||
elianaicgomes | 0 | 777,080,186 | 5% | ||
steemstem-trig | 0 | 598,954,400 | 30% | ||
baltai | 0 | 2,758,293,022 | 1.2% | ||
sandymeyer | 0 | 21,920,583,757 | 1% | ||
atheistrepublic | 0 | 2,979,460,837 | 1.2% | ||
ibt-survival | 0 | 34,618,068,862 | 10% | ||
hjmarseille | 0 | 894,378,850 | 21% | ||
sweetval | 0 | 13,890,348,199 | 50% | ||
zirky | 0 | 1,174,742,204 | 2.04% | ||
gloriaolar | 0 | 691,495,277 | 0.72% | ||
lightpaintershub | 0 | 618,046,207 | 1% | ||
keys-defender | 0 | 3,832,174,706 | 100% | ||
monica-ene | 0 | 993,798,564 | 1.2% | ||
hivebuzz | 0 | 9,136,687,125 | 2% | ||
laruche | 0 | 6,847,120,671 | 3.25% | ||
stemsocial | 0 | 252,142,749,836 | 30% | ||
the100 | 0 | 554,286,980 | 1.2% | ||
ciderjunkie | 0 | 1,538,598,130 | 2.43% | ||
pimpstudio | 0 | 11,438,075,851 | 100% | ||
cybercity | 0 | 7,925,594,862 | 2.4% | ||
emrysjobber | 0 | 677,778,827 | 25% | ||
noelyss | 0 | 10,514,268,194 | 15% | ||
balvinder294 | 0 | 4,790,086,239 | 20% | ||
jsalvage | 0 | 587,486,058 | 15% | ||
quinnertronics | 0 | 15,792,027,777 | 7% | ||
mercurial9 | 0 | 40,675,160,321 | 100% | ||
gohive | 0 | 3,158,797,544 | 100% | ||
aabcent | 0 | 375,182,735 | 1.92% | ||
altleft | 0 | 8,098,498,373 | 0.02% | ||
noalys | 0 | 482,988,312 | 1.2% | ||
borniet | 0 | 844,664,037 | 1.2% | ||
evagavilan2 | 0 | 583,758,544 | 1.2% | ||
gonklavez9 | 0 | 568,826,460 | 30% | ||
doudoer | 0 | 682,708,759 | 50% | ||
apendix1994 | 0 | 3,873,312,153 | 90% | ||
cosplay.hadr | 0 | 557,411,202 | 2.4% | ||
hadrgames | 0 | 575,489,478 | 2.4% | ||
meritocracy | 0 | 27,054,084,259 | 0.24% | ||
jmsansan | 0 | 1,959,673,752 | 1.2% | ||
pepeymeli | 0 | 582,964,960 | 50% | ||
eumorrell | 0 | 2,382,407,056 | 100% | ||
he-index | 0 | 8,898,038,249 | 10% | ||
dcrops | 0 | 15,364,204,927 | 1.2% | ||
infernalcoliseum | 0 | 823,726,030 | 25% | ||
rondonshneezy | 0 | 2,500,766,642 | 12.5% | ||
peerfinance | 0 | 49,215,044,708 | 100% | ||
yozen | 0 | 1,174,649,710 | 1.2% | ||
dodovietnam | 0 | 1,397,686,058 | 1.2% | ||
oahb132 | 0 | 486,105,355 | 15% | ||
failingforwards | 0 | 1,442,513,496 | 1.2% | ||
moraviareosa | 0 | 21,672,260 | 100% | ||
drricksanchez | 0 | 6,278,675,345 | 1.2% | ||
m0rt0nmattd | 0 | 3,302,162,889 | 100% | ||
trippymane | 0 | 725,188,968 | 2.4% | ||
nfttunz | 0 | 3,999,445,577 | 0.24% | ||
okluvmee | 0 | 1,148,952,511 | 1.2% | ||
atexoras.pub | 0 | 669,682,069 | 1.2% | ||
merit.ahama | 0 | 1,511,700,666 | 0.72% | ||
holovision.cash | 0 | 3,636,287,538 | 100% | ||
krrizjos18 | 0 | 1,305,539,277 | 15% | ||
holovision.stem | 0 | 1,087,637,064 | 100% | ||
sarashew | 0 | 1,709,563,693 | 2.4% | ||
podping | 0 | 3,517,949,220 | 0.6% | ||
ayesha-malik | 0 | 4,118,912,735 | 80% | ||
drhueso | 0 | 581,237,395 | 1.2% | ||
pinkfloyd878 | 0 | 4,218,377,985 | 100% | ||
lycanskiss | 0 | 2,170,153,316 | 100% | ||
chessbrotherspro | 0 | 337,145,100,981 | 100% | ||
lexansky | 0 | 1,171,910,096 | 100% | ||
aries90 | 0 | 19,901,145,077 | 2.4% | ||
elderdark | 0 | 970,674,994 | 1.25% | ||
cugel | 0 | 1,074,116,449 | 1.2% | ||
martinthemass | 0 | 614,588,585 | 100% | ||
migka | 0 | 4,351,121,269 | 90% | ||
logen9f | 0 | 911,618,128 | 100% | ||
waffleuncle | 0 | 1,300,208,859 | 30% | ||
blingit | 0 | 1,525,851,182 | 1.2% | ||
astrocat-3663 | 0 | 476,863,816 | 30% | ||
marsupia | 0 | 971,700,935 | 25% | ||
michupa | 0 | 7,060,577,228 | 2.5% | ||
rosmarly | 0 | 1,628,542,218 | 100% | ||
yixn | 0 | 22,419,309,752 | 1.2% | ||
dia-monds | 0 | 14,357,601,609 | 100% | ||
waivio.curator | 0 | 1,776,303,272 | 3.31% | ||
simsahas | 0 | 1,161,660,400 | 2.4% | ||
aichanbot | 0 | 893,619,478 | 2.4% | ||
crypto-shots | 0 | 0 | 50% | ||
imoogin3v3rm0r3 | 0 | 2,317,082,296 | 30% | ||
vickoly | 0 | 1,255,611,057 | 1.2% | ||
mmoonn | 0 | 1,527,708,976 | 100% | ||
oabreuf24 | 0 | 8,179,866,368 | 100% | ||
hivepakistan | 0 | 1,300,952,914,616 | 60% | ||
vindiesel1980 | 0 | 1,287,799,180 | 1.2% | ||
lukasbachofner | 0 | 1,010,084,030 | 1.2% | ||
allentaylor | 0 | 488,288,633 | 1.2% | ||
sam9999 | 0 | 2,132,745,449 | 15% | ||
benwickenton | 0 | 1,162,688,555 | 2.4% | ||
cryptoshots.nft | 0 | 1,074,394,317 | 100% | ||
njclabaugh | 0 | 476,644,239 | 100% | ||
drivingindevon | 0 | 697,418,703 | 1.92% | ||
bhdc | 0 | 865,786,574 | 2.4% | ||
archangel21 | 0 | 1,573,521,563 | 2.4% | ||
shawnnft | 0 | 3,590,071,647 | 6% | ||
street.curator | 0 | 949,332,466 | 50% | ||
matilei | 0 | 534,732,788 | 2.4% | ||
filmmaking4hive | 0 | 928,479,843 | 2.4% | ||
mugueto2022 | 0 | 554,248,026 | 20% | ||
ricardoeloy | 0 | 532,735,819 | 6% | ||
nazom | 0 | 1,175,722,443 | 50% | ||
raca75 | 0 | 692,863,236 | 50% | ||
baboz | 0 | 595,872,251 | 0.6% | ||
sbtofficial | 0 | 2,131,581,699 | 1.2% | ||
tehseen-akhtar | 0 | 635,260,929 | 30% | ||
cryptoshots.play | 0 | 0 | 10% | ||
frankrey11 | 0 | 503,312,534 | 100% | ||
quduus1 | 0 | 6,803,154,991 | 18% | ||
hk-curation | 0 | 78,360,880,347 | 50% | ||
vagabond42069 | 0 | 622,556,060 | 15% | ||
inibless | 0 | 843,962,344 | 15% | ||
ctptips | 0 | 0 | 15% | ||
cindynancy | 0 | 754,456,103 | 15% | ||
idksamad78699 | 0 | 709,642,198 | 1.2% | ||
bgmoha | 0 | 6,733,588,142 | 100% | ||
justfavour | 0 | 712,359,455 | 1.2% | ||
sc000 | 0 | 581,908,804 | 2.4% | ||
faiza34 | 0 | 2,337,002,171 | 30% | ||
mishkatfatima | 0 | 738,013,073 | 30% | ||
jijisaurart | 0 | 647,506,557 | 1.2% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
leogomez1414 | 0 | 2,327,863,394 | 25% | ||
tuba777 | 0 | 656,213,664 | 15% | ||
stream4fun | 0 | 723,688,688 | 30% | ||
smariam | 0 | 2,499,705,070 | 25% | ||
clpacksperiment | 0 | 1,302,886,864 | 1.2% | ||
theoneblog | 0 | 2,302,788,992 | 50% | ||
humbe | 0 | 1,478,929,141 | 1% | ||
elcholitosanto | 0 | 14,812,018,690 | 50% | ||
aaronm04 | 0 | 993,659,316 | 50% | ||
peakecoin | 0 | 915,928,078 | 100% | ||
iialexnight | 0 | 5,655,146,962 | 50% | ||
arduilcelebren | 0 | 578,367,570 | 1.2% | ||
opticus | 0 | 1,781,496,019 | 1.2% | ||
lettinggotech | 0 | 527,550,159 | 1.2% | ||
karina.gpt | 0 | 0 | 100% | ||
albro | 0 | 7,366,458,718 | 100% | ||
foodchunk | 0 | 58,477,927,939 | 18% | ||
rhemagames | 0 | 2,204,838,672 | 1.2% | ||
les90 | 0 | 5,496,571,445 | 30% | ||
soylegionario | 0 | 922,895,919 | 2.4% | ||
cyclopshive | 0 | 20,961,585,005 | 50% | ||
wallay | 0 | 6,313,016,701 | 30% | ||
ismartboy | 0 | 946,253,080 | 30% | ||
husnainyousaf | 0 | 2,894,237,633 | 60% | ||
snippets | 0 | 93,150,359,520 | 100% | ||
ginabell | 0 | 0 | 100% | ||
hive-180478 | 0 | 0 | 100% | ||
imoog1en3v3rm0r3 | 0 | 875,273,847 | 30% | ||
agileautomation | 0 | 114,529,014 | 100% |
<h3>Congratulations!</h3><hr /><div class="pull-right"><img src="https://files.peakd.com/file/peakd-hive/chessbrotherspro/AJoJKGVARKHFCTHG7ee3GNkn5RMN7wixeJ52ipAgzDZ4QmeTcBdsk8hpi4pgj4e.png" alt="You have obtained a vote from CHESS BROTHERS PROJECT"/></div><div class="text-justify"><h3>✅ Good job. Your post has been appreciated and has received support from <a href="/@chessbrotherspro"><b>CHESS BROTHERS</b></a> ♔ 💪</h3><p><br>♟ We invite you to use our hashtag <b>#chessbrothers</b> and learn more <a href="/@chessbrotherspro/introducing-chess-brothers-project-the-most-innovative-community-combining-chess-fitness-and-more"><b>about us</b></a>.</p><p>♟♟ You can also reach us on our <a href="https://discord.gg/73sK9ZTGqJ" rel="noopener" title="This is going to take you to the Discord of Chess Brothers"><b>Discord server</b></a> and promote your posts there. </p><p>♟♟♟ Consider <a href="/@chessbrotherspro/teamwork-is-worthwhile-join-the-chess-brothers-healing-trail-supporting-the-work-being-done-and-earning-rewards"><b>joining our curation trail</b></a> so we work as a team and you get rewards automatically.</p><p>♞♟ Check out our <a href="/@chessbrotherspro"><b>@chessbrotherspro</b></a> account to learn about the curation process carried out daily by our team.</p><br>🥇 If you want to earn profits with your HP delegation and support our project, we invite you to join the <i>Master Investor</i> plan. <a href="/@chessbrotherspro/master-investor-plan-or-programa">Here you can learn how to do it.</a></div><div class="text-center"><p><br>Kindly</p><p><strong><em>The CHESS BROTHERS team</em></strong></p></div>
author | chessbrotherspro |
---|---|
permlink | re-javascript-prototypes-es5-and-tricks-by-albro-20231223t065111z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-12-23 06:51:12 |
last_update | 2023-12-23 06:51:12 |
depth | 1 |
children | 0 |
last_payout | 2023-12-30 06:51:12 |
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 | 1,628 |
author_reputation | 78,000,503,134,261 |
root_title | "javascript prototypes, ES5 & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,919,857 |
net_rshares | 2,741,936,051 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 2,741,936,051 | 34.1% |
That type of script is interesting! Examples using the blockchain always amaze me! `<center>https://files.peakd.com/file/peakd-hive/dlmmqb/23tkn1F4Yd2BhWigkZ46jQdMmkDRKagirLr5Gh4iMq9TNBiS7anhAE71y9JqRuy1j77qS.png</center> <center> <b> Want to Know more about Hivepakistan? Ping Us On [Hive Pakistan Discord server](https://discord.gg/3FzxCqFYyG) To support HivePakistan, delegate Hive Power to hivepakistan and earn 90% curation reward :) Here are some handy links for delegation </b> </center> <center>| [50 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=50%20HP) | [100 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=100%20HP) |[500 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=500%20HP) | [1000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=1000%20HP) | [5000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=5000%20HP) | [10000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=10000%20HP) | [20000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=20000%20HP) | A delegation of 500 or more HP makes you earn Hivepakistan supporter badge. </center> `
author | gwajnberg |
---|---|
permlink | re-albro-20231222t16144613z |
category | hive-169321 |
json_metadata | {"image":["https://files.peakd.com/file/peakd-hive/dlmmqb/23tkn1F4Yd2BhWigkZ46jQdMmkDRKagirLr5Gh4iMq9TNBiS7anhAE71y9JqRuy1j77qS.png"],"image_ratios":[4.8],"type":"comment","tags":["hive-169321","programming","development","gosh","threads","neoxian","tricks","hive-engine","chessbrothers","stem","leofinance"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-12-22 23:14:45 |
last_update | 2023-12-22 23:14:45 |
depth | 1 |
children | 0 |
last_payout | 2023-12-29 23:14:45 |
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 | 1,452 |
author_reputation | 371,061,746,426,989 |
root_title | "javascript prototypes, ES5 & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,913,287 |
net_rshares | 2,722,933,824 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 2,722,933,824 | 34.1% |
Congratulations @albro! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@albro/replies.png?202312230736"></td><td>You got more than 500 replies.<br>Your next target is to reach 600 replies.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@albro) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out our last posts:** <table><tr><td><a href="/hivebuzz/@hivebuzz/christmas-2023"><img src="https://images.hive.blog/64x128/https://files.peakd.com/file/peakd-hive/hivebuzz/48PxLszsgqS1gaev6FeBYEsrt9sKNhKtddSS32hKnvM3Xam6KCMs3rza5BPR7AQNaF.png"></a></td><td><a href="/hivebuzz/@hivebuzz/christmas-2023">It's the Christmas season: give your friends a gift</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-albro-20231223t073824 |
category | hive-169321 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-12-23 07:38:24 |
last_update | 2023-12-23 07:38:24 |
depth | 1 |
children | 0 |
last_payout | 2023-12-30 07:38:24 |
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 | 997 |
author_reputation | 369,399,718,796,281 |
root_title | "javascript prototypes, ES5 & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,920,418 |
net_rshares | 2,704,080,581 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 2,704,080,581 | 34.1% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-albro-javascript-prototypes-es5-and-tricks-by-albro-20231223t081315112z |
category | hive-169321 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-12-23 08:13:15 |
last_update | 2023-12-23 08:13:15 |
depth | 1 |
children | 0 |
last_payout | 2023-12-30 08:13:15 |
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 | 565 |
author_reputation | 22,918,491,691,707 |
root_title | "javascript prototypes, ES5 & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,920,817 |
net_rshares | 7,971,628,459 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 7,971,628,459 | 100% |