<center></center> <p> In this post, I'm going to talk about two different aspects of JavaScript objects: methods and accessors. </p> <h3> Object methods in JavaScript </h3> <p> Methods in JavaScript are actions that are performed on an object, but object method (that is, methods that belong to objects) is one of the properties of the object that has a function definition. To put it more simply, the methods of objects in JavaScript are the same functions that are placed inside objects to perform certain actions. See the following example: </p> <pre><code class="language-javascript">var platform = { firstName: "Hive", lastName : "Blockchain", id : 2020, fullName : function() { return this.firstName + " " + this.lastName; } };</code></pre> <p> In the <code>fullName</code> attribute, we have the definition of a function. We call this function definition a method. </p> <h3> <code>this</code> keyword </h3> <p> In the definition of a function, the this keyword refers to the owner of that function, so in the example above, this refers to the <code>platform</code> object because the owner of the <code>fullName</code> attribute is naturally that function. So it can be said that <code>this.firstName</code> means the <code>firstName</code> property of this object. </p> <h3> Access to object methods </h3> <p> To access the methods of an object, we use the following structure: </p> <pre><code class="language-javascript">objectName.methodName()</code></pre> <p> <strong>Note:</strong> According to the example above, we call <code>fullName()</code> a method and we call <code>fullName</code> a property! Therefore, we have a property called <code>fullName</code>, which is called by putting parentheses in front of it and executes the method inside it. </p> <p> Let's look at some examples: </p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <p>Creating and using an object method.</p> <p>A method is actually a function definition stored as a property value.</p> <p id="demo"></p> <script> var platform = { firstName: "Hive", lastName : "Blockchain", id : 2020, fullName : function() { return this.firstName + " " + this.lastName; } }; document.getElementById("demo").innerHTML = platform.fullName(); </script> </body> </html></code></pre> <p> In this case, our output will be the definition of the function (method) itself! </p> <center> </center> <pre><code class="language-javascript">function() { return this.firstName + " " + this.lastName; }</code></pre> <p> <i><strong>Question:</strong></i> Can we add methods to an object? </p> <p> <i><strong>Answer:</strong></i> Yes! This work is not difficult at all and is like adding properties to the object. The only difference is that you give it a function definition instead of a given value. Consider the following example: </p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var platform = { firstName: "Hive", lastName : "Blockchain", id : 2020, }; platform.name = function() { return this.firstName + " " + this.lastName; }; document.getElementById("demo").innerHTML = "My father is " + platform.name(); </script> </body> </html></code></pre> <center></center> <h3> Prebuilt methods </h3> <p> In JavaScript, we have methods that have already been created by the developers of this language. I have given you an example of it so you can see how it works: </p> <p> This example uses the <code>toUpperCase()</code> method to convert a text string to an uppercase string: </p> <pre><code class="language-javascript">var message = "Hello world!"; var x = message.toUpperCase();</code></pre> <p> By executing this statement, our initial string which is "<code>Hello world!</code>" will become "<code>HELLO WORLD!</code>". </p> <h3> Accessors in JavaScript </h3> <p> You may say to yourself, I'm fluent in JavaScript, but I don't know anything called <strong>Accessor</strong>! The reason is that few people use the word Accessor because it is a general term. Actually, we call <strong>Setters</strong> and <strong>Getters</strong> together as Accessors. </p> <p> In fact, Accessors were introduced in 2009 with ECMAScript 5, and they allow you to access some properties of objects, and that's why they are called accessors (they give you access). </p> <p> <code><strong>Get</strong></code><strong> keyword</strong> </p> <p> To better understand this keyword, it is better to go directly to its examples. </p> <p> In the following example, I use a property called <code>lang</code> to <code>get</code> the value of the <code>language</code> property, that is, to receive: </p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>JavaScript Getters and Setters</h2> <p>This example uses a lang property to get the value of the language property.</p> <p id="demo"></p> <script> // Create an object: var platform = { firstName: "Hive", lastName : "Blockchain", language : "en", get lang() { return this.language; } }; // Display data from the object using a getter: document.getElementById("demo").innerHTML = platform.lang; </script> </body> </html></code></pre> <center></center> <p> The output of this code will be en, but how? Let me explain to you step by step: </p> <ul> <li> We have an object called <code>platform</code>. </li> <li> This object has properties (such as <code>firstName</code>, <code>lastName</code>, <code>language</code>, etc.). </li> <li> We create a property called <code>lang</code> (which is actually a function) using the <code>get</code> keyword. </li> <li> <code>lang</code> returns the value of the <code>language</code> attribute. </li> <li> Its output was <code>en</code> (short for English). </li> </ul> <p> If we want to use setters in this example, we say: </p> <pre><code class="language-javascript">var platform = { firstName: "Hive", lastName : "Blockchain", language : "", set lang(lang) { this.language = lang; } }; // Specifies a property for the object platform.lang = "en"; // Retrieves and displays data from the object document.getElementById("demo").innerHTML = platform.language;</code></pre> <p> Yes, you guessed it right, using the <code>lang</code> attribute, we have set the <code>language</code> value. In this case, the output will be <code>en</code>. </p> <h3> The difference between accessors and methods </h3> <p> What do you think is the difference between the two examples below? </p> <pre><code class="language-javascript">var platform = { firstName: "Hive", lastName : "Blockchain", fullName : function() { return this.firstName + " " + this.lastName; } }; document.getElementById("demo").innerHTML = platform.fullName();</code></pre> <p> </p> <pre><code class="language-javascript">var platform = { firstName: "Hive", lastName : "Blockchain", get fullName() { return this.firstName + " " + this.lastName; } }; document.getElementById("demo").innerHTML = platform.fullName;</code></pre> <p> We access the <code>fullName</code> property in both examples, but in the first example this is done through a function (<code>platform.fullName()</code>) and in the second example through a property (<code>platform.fullName</code>). There is no difference between these two methods, except that writing the codes in the second method is a little easier. </p> <p> <strong>Note:</strong> You can also use method chaining in these examples. Pay attention to the following example: </p> <pre><code class="language-javascript">var platform = { firstName: "Hive", lastName : "Blockchain", language : "en", get lang() { return this.language.toUpperCase(); } }; document.getElementById("demo").innerHTML = platform.lang;</code></pre> <p> In this example, I have used the <code>toUpperCase</code> method when defining <code>lang</code>, so its output will always be in capital letters, and we don't need to apply this statement to the output every time. </p> <p> This is no different for setters: </p> <pre><code class="language-javascript">set lang(lang) { this.language = lang.toUpperCase(); }</code></pre> <p> <strong>Note:</strong> You may have heard of the <code>Object.defineProperty()</code> statement. This statement can create the setters or getters you want. Pay attention to the following example: </p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>JavaScript Getters and Setters</h2> <p>Perfect for creating counters:</p> <p id="demo"></p> <script> // Define the initial object var obj = {counter : 0}; // Define Setters and Getters Object.defineProperty(obj, "reset", { get : function () {this.counter = 0;} }); Object.defineProperty(obj, "increment", { get : function () {this.counter++;} }); Object.defineProperty(obj, "decrement", { get : function () {this.counter--;} }); Object.defineProperty(obj, "add", { set : function (value) {this.counter += value;} }); Object.defineProperty(obj, "subtract", { set : function (value) {this.counter -= value;} }); // Testing codes obj.reset; obj.add = 5; obj.subtract = 1; obj.increment; obj.decrement; document.getElementById("demo").innerHTML = obj.counter; </script> </body> </html></code></pre> <center></center> <p> In the example, it is clear that this statement does not do anything special, but is another way to define setters and getters. </p>
author | albro | ||||||
---|---|---|---|---|---|---|---|
permlink | methods-and-accessors-in-javascript-objects-by-albro | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"peakd/2023.11.3","format":"markdown","author":"albro","description":" In this post, I'm going to talk about two different aspects of JavaScript objects: methods and accessors. ","tags":["development","programming","gosh","threads","chessbrothers","tricks","hive-engine","neoxian","lassecash","leofinance"],"users":[],"image":["https://files.peakd.com/file/peakd-hive/albro/23uFuC1qr3VcvwWoCV1r6zXFxxG1D7YLRvwMoCfRtKr4ddjDSZAUJwvtJWE6UJ4rkL3LQ.png","https://files.peakd.com/file/peakd-hive/albro/23u6YmnM2jbqb6FkytGekTgMUFv7Ti1RWhavqW6D3zebVJknaX8Vt7B8GU7agPRYQ83Yq.png","https://files.peakd.com/file/peakd-hive/albro/23uRLJbjeYmjC5AduNzSC7X6pgMjTDcRB6tntg55weY5jz7jEGFKGSurH3pvpNwRGrac8.png","https://files.peakd.com/file/peakd-hive/albro/23u6Yr8WFDFLfFW1U2VSsRo2CANggsNqagmaiAHyYuaNST4SLg1iQG8MxTeNtt3YZXA4t.png","https://files.peakd.com/file/peakd-hive/albro/23uFwWW5kySbomqjjnK6hmLns5P4RR8sMgc5TXUwB8ieibuXNQguhU3uZtft7pcN8US4i.png"]}" | ||||||
created | 2023-12-05 21:30:00 | ||||||
last_update | 2023-12-05 21:30:00 | ||||||
depth | 0 | ||||||
children | 2 | ||||||
last_payout | 2023-12-12 21:30:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.125 HBD | ||||||
curator_payout_value | 1.100 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 10,613 | ||||||
author_reputation | 30,477,419,385,789 | ||||||
root_title | "Methods and Accessors in JavaScript objects By albro" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 129,442,102 | ||||||
net_rshares | 4,873,589,509,435 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 2,412,922,106 | 0.4% | ||
eric-boucher | 0 | 2,061,212,745 | 0.4% | ||
thecryptodrive | 0 | 9,183,529,311 | 0.16% | ||
roelandp | 0 | 41,118,249,329 | 5% | ||
cloh76 | 0 | 532,866,051 | 0.4% | ||
jeffjagoe | 0 | 1,517,145,385 | 0.5% | ||
lordvader | 0 | 4,489,530,251 | 0.8% | ||
rmach | 0 | 1,896,797,303 | 5% | ||
lemouth | 0 | 268,975,415,028 | 10% | ||
netaterra | 0 | 6,600,225,686 | 0.4% | ||
lamouthe | 0 | 752,970,392 | 10% | ||
tfeldman | 0 | 742,651,739 | 0.4% | ||
metabs | 0 | 1,034,670,162 | 10% | ||
mcsvi | 0 | 125,487,882,348 | 50% | ||
lk666 | 0 | 67,931,487,212 | 100% | ||
cnfund | 0 | 1,626,465,452 | 0.8% | ||
boxcarblue | 0 | 1,721,303,745 | 0.4% | ||
justyy | 0 | 3,822,091,836 | 0.8% | ||
curie | 0 | 47,565,325,383 | 0.8% | ||
modernzorker | 0 | 487,444,345 | 0.56% | ||
techslut | 0 | 26,630,824,180 | 4% | ||
steemstem | 0 | 184,648,069,299 | 10% | ||
edb | 0 | 732,070,454 | 1% | ||
walterjay | 0 | 65,159,130,610 | 5% | ||
valth | 0 | 1,503,200,157 | 5% | ||
metroair | 0 | 3,135,324,189 | 0.8% | ||
dna-replication | 0 | 348,038,655 | 10% | ||
dhimmel | 0 | 53,104,049,093 | 2.5% | ||
detlev | 0 | 1,909,144,748 | 0.24% | ||
federacion45 | 0 | 1,187,419,815 | 0.4% | ||
gamersclassified | 0 | 701,645,432 | 0.4% | ||
iansart | 0 | 682,007,674 | 0.4% | ||
forykw | 0 | 1,143,548,048 | 0.4% | ||
mobbs | 0 | 15,249,846,418 | 5% | ||
jerrybanfield | 0 | 2,609,211,703 | 0.8% | ||
rt395 | 0 | 2,024,791,021 | 1.5% | ||
bitrocker2020 | 0 | 1,233,863,850 | 0.12% | ||
sustainablyyours | 0 | 3,483,265,713 | 5% | ||
helo | 0 | 3,113,096,615 | 5% | ||
arunava | 0 | 2,717,689,263 | 0.32% | ||
samminator | 0 | 6,653,196,250 | 5% | ||
enjar | 0 | 6,217,219,656 | 0.72% | ||
lorenzor | 0 | 1,347,247,908 | 50% | ||
derosnec | 0 | 840,029,492 | 4% | ||
paulag | 0 | 11,693,815,549 | 10% | ||
alexander.alexis | 0 | 6,084,831,284 | 10% | ||
dandesign86 | 0 | 16,178,456,294 | 8% | ||
jayna | 0 | 1,087,108,285 | 0.16% | ||
gunthertopp | 0 | 10,982,111,282 | 0.2% | ||
empath | 0 | 557,730,993 | 0.4% | ||
minnowbooster | 0 | 1,077,619,913,123 | 20% | ||
felt.buzz | 0 | 1,429,058,533 | 0.2% | ||
howo | 0 | 335,392,739,233 | 10% | ||
tsoldovieri | 0 | 1,016,128,702 | 5% | ||
steemwizards | 0 | 530,441,656 | 0.8% | ||
neumannsalva | 0 | 602,675,552 | 0.4% | ||
stayoutoftherz | 0 | 22,568,941,766 | 0.2% | ||
abigail-dantes | 0 | 3,653,870,555 | 10% | ||
pixelfan | 0 | 50,992,018,207 | 6% | ||
syh7758520 | 0 | 2,618,546,771 | 80% | ||
zonguin | 0 | 494,998,180 | 2.5% | ||
investingpennies | 0 | 2,914,344,418 | 0.8% | ||
khalil319 | 0 | 2,059,542,051 | 10% | ||
iamphysical | 0 | 802,486,749 | 90% | ||
zyx066 | 0 | 588,870,584 | 0.24% | ||
revo | 0 | 1,606,282,475 | 0.8% | ||
azulear | 0 | 1,183,319,604 | 100% | ||
psicoluigi | 0 | 758,826,827 | 50% | ||
thelordsharvest | 0 | 665,508,428 | 0.8% | ||
niallon11 | 0 | 9,874,789,023 | 0.4% | ||
sumant | 0 | 495,000,812 | 0.4% | ||
aidefr | 0 | 1,024,692,162 | 5% | ||
sorin.cristescu | 0 | 25,831,689,001 | 5% | ||
splash-of-angs63 | 0 | 7,663,422,289 | 60% | ||
jlsplatts | 0 | 21,635,596,449 | 2% | ||
meno | 0 | 3,422,221,695 | 0.4% | ||
doifeellucky | 0 | 631,671,613 | 0.4% | ||
enzor | 0 | 554,190,529 | 10% | ||
bartosz546 | 0 | 793,829,925 | 0.4% | ||
florian-glechner | 0 | 838,141,813 | 0.08% | ||
dandays | 0 | 2,530,812,819 | 0.15% | ||
socent | 0 | 983,634,299 | 15% | ||
eonwarped | 0 | 14,559,039,685 | 1.25% | ||
postpromoter | 0 | 239,496,502,662 | 10% | ||
bluefinstudios | 0 | 485,609,632 | 0.24% | ||
steveconnor | 0 | 669,292,627 | 0.4% | ||
paulmoon410 | 0 | 1,643,062,201 | 10% | ||
feltoxxx | 0 | 8,592,225,845 | 100% | ||
nicole-st | 0 | 1,560,829,069 | 0.4% | ||
aboutcoolscience | 0 | 6,173,941,304 | 10% | ||
sandracarrascal | 0 | 488,505,555 | 50% | ||
kernelillo | 0 | 2,689,795,635 | 5% | ||
helpie | 0 | 9,473,094,616 | 8% | ||
kenadis | 0 | 2,677,903,633 | 10% | ||
madridbg | 0 | 4,841,885,423 | 10% | ||
robotics101 | 0 | 3,002,895,429 | 10% | ||
punchline | 0 | 973,338,431 | 0.8% | ||
markaustin | 0 | 793,973,000 | 5% | ||
soulturtle | 0 | 474,463,616 | 1.6% | ||
anggaariska | 0 | 1,035,771,689 | 50% | ||
sco | 0 | 2,834,189,444 | 10% | ||
ennyta | 0 | 986,913,896 | 50% | ||
juecoree | 0 | 1,121,915,208 | 7% | ||
vjap55 | 0 | 7,462,005,628 | 100% | ||
nerdtopiade | 0 | 498,056,920 | 2.75% | ||
dudeontheweb | 0 | 1,985,445,963 | 1.75% | ||
carn | 0 | 489,482,166 | 0.72% | ||
eliaschess333 | 0 | 48,360,671,451 | 100% | ||
bartheek | 0 | 2,592,048,083 | 0.8% | ||
ydavgonzalez | 0 | 1,854,090,977 | 10% | ||
intrepidphotos | 0 | 2,504,224,375 | 7.5% | ||
fineartnow | 0 | 531,070,507 | 0.4% | ||
slacktmusic | 0 | 713,166,798 | 4% | ||
communitybank | 0 | 552,510,833 | 0.8% | ||
fragmentarion | 0 | 5,746,972,955 | 10% | ||
bennettitalia | 0 | 2,878,232,589 | 4% | ||
utube | 0 | 616,019,153 | 0.8% | ||
dynamicrypto | 0 | 2,837,356,141 | 1% | ||
neneandy | 0 | 882,159,744 | 0.8% | ||
marc-allaria | 0 | 581,512,954 | 0.4% | ||
sportscontest | 0 | 783,328,395 | 0.8% | ||
pandasquad | 0 | 2,090,291,791 | 0.8% | ||
cool08 | 0 | 503,862,958 | 5% | ||
miguelangel2801 | 0 | 791,100,967 | 50% | ||
fantasycrypto | 0 | 582,193,740 | 0.8% | ||
emiliomoron | 0 | 1,483,905,160 | 5% | ||
photohunt | 0 | 539,941,059 | 0.8% | ||
geopolis | 0 | 624,402,017 | 10% | ||
ajfernandez | 0 | 769,374,193 | 100% | ||
robertbira | 0 | 1,040,493,863 | 2.5% | ||
alexdory | 0 | 1,358,485,549 | 10% | ||
takowi | 0 | 16,104,795,780 | 0.8% | ||
irgendwo | 0 | 3,163,469,105 | 0.8% | ||
flugschwein | 0 | 820,524,164 | 8.5% | ||
charitybot | 0 | 5,053,625,307 | 100% | ||
cyprianj | 0 | 5,503,007,630 | 5% | ||
melvin7 | 0 | 15,836,381,331 | 5% | ||
francostem | 0 | 1,346,696,071 | 10% | ||
endopediatria | 0 | 695,220,899 | 20% | ||
croctopus | 0 | 1,462,519,339 | 100% | ||
jjerryhan | 0 | 673,469,213 | 0.4% | ||
cryptictruth | 0 | 2,004,340,810 | 0.5% | ||
zipporah | 0 | 3,955,851,759 | 1.6% | ||
superlotto | 0 | 2,191,054,448 | 0.8% | ||
doomsdaychassis | 0 | 1,433,016,050 | 8% | ||
bscrypto | 0 | 2,122,475,648 | 0.4% | ||
movingman | 0 | 533,532,009 | 20% | ||
jeronimorubio | 0 | 806,088,521 | 8% | ||
tomastonyperez | 0 | 17,001,951,033 | 50% | ||
elvigia | 0 | 11,139,063,964 | 50% | ||
sanderjansenart | 0 | 721,842,208 | 0.4% | ||
qberry | 0 | 529,267,860 | 0.4% | ||
kanrat | 0 | 1,048,941,421 | 1.62% | ||
greddyforce | 0 | 544,471,578 | 0.29% | ||
braaiboy | 0 | 1,479,118,758 | 0.4% | ||
gadrian | 0 | 63,324,996,535 | 7.5% | ||
fotogruppemunich | 0 | 508,095,972 | 0.2% | ||
therising | 0 | 13,939,336,913 | 0.8% | ||
eniolw | 0 | 14,488,236,128 | 100% | ||
de-stem | 0 | 5,465,526,561 | 9.9% | ||
misterlangdon | 0 | 1,164,512,935 | 50% | ||
josedelacruz | 0 | 4,851,383,014 | 50% | ||
achimmertens | 0 | 2,419,968,837 | 0.4% | ||
lorenzopistolesi | 0 | 1,573,325,000 | 0.4% | ||
charitymemes | 0 | 524,667,081 | 100% | ||
camuel | 0 | 7,113,291,327 | 25% | ||
erickyoussif | 0 | 627,746,720 | 100% | ||
primersion | 0 | 375,491,417,118 | 20% | ||
deholt | 0 | 541,178,783 | 8.5% | ||
pladozero | 0 | 29,275,542,146 | 10% | ||
temitayo-pelumi | 0 | 868,885,224 | 10% | ||
free-reign | 0 | 1,418,020,999 | 1.2% | ||
andrick | 0 | 860,141,562 | 50% | ||
doctor-cog-diss | 0 | 8,740,100,676 | 10% | ||
dailyspam | 0 | 12,949,055,184 | 20% | ||
acont | 0 | 6,860,552,784 | 50% | ||
uche-nna | 0 | 799,795,775 | 0.64% | ||
citizendog | 0 | 678,981,734 | 0.8% | ||
cheese4ead | 0 | 610,248,127 | 0.4% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
apshamilton | 0 | 1,884,001,429 | 0.1% | ||
nattybongo | 0 | 18,729,939,111 | 10% | ||
bflanagin | 0 | 646,790,085 | 0.4% | ||
ubaldonet | 0 | 2,654,231,167 | 80% | ||
melor9 | 0 | 729,628,383 | 4% | ||
lillywilton | 0 | 2,191,466,398 | 20% | ||
hamismsf | 0 | 595,578,450 | 0.1% | ||
gerdtrudroepke | 0 | 6,138,778,760 | 7% | ||
goblinknackers | 0 | 76,353,813,286 | 7% | ||
kylealex | 0 | 4,686,042,956 | 10% | ||
cubapl | 0 | 589,229,996 | 5% | ||
orlandogonzalez | 0 | 3,257,384,909 | 25% | ||
voxmortis | 0 | 551,709,269 | 0.32% | ||
fran.frey | 0 | 4,185,514,435 | 50% | ||
jrevilla | 0 | 614,059,358 | 100% | ||
thelittlebank | 0 | 2,792,435,893 | 0.4% | ||
pboulet | 0 | 21,018,127,039 | 8% | ||
stem-espanol | 0 | 11,617,902,262 | 100% | ||
vimm | 0 | 48,581,906,864 | 5% | ||
cliffagreen | 0 | 4,886,135,702 | 10% | ||
aleestra | 0 | 12,730,064,630 | 80% | ||
brianoflondon | 0 | 9,853,497,455 | 0.2% | ||
giulyfarci52 | 0 | 1,710,882,841 | 50% | ||
kristall97 | 0 | 3,968,346,809 | 100% | ||
steemcryptosicko | 0 | 1,279,490,168 | 0.16% | ||
stem.witness | 0 | 558,398,624 | 10% | ||
chisdealhd | 0 | 7,312,155,802 | 30% | ||
jpbliberty | 0 | 902,194,370 | 0.2% | ||
double-negative | 0 | 530,246,614 | 20% | ||
vaultec | 0 | 6,516,414,771 | 12% | ||
steemstorage | 0 | 977,951,126 | 0.8% | ||
crowdwitness | 0 | 26,456,771,730 | 5% | ||
helpie-caster | 0 | 1,033,347,900 | 3.25% | ||
steemean | 0 | 9,972,085,489 | 5% | ||
raynen | 0 | 3,960,165,049 | 100% | ||
quentinvb | 0 | 474,690,380 | 100% | ||
newton666 | 0 | 4,454,336,796 | 100% | ||
eliana-art | 0 | 1,064,418,984 | 100% | ||
edencourage | 0 | 6,322,012,338 | 50% | ||
robibasa | 0 | 18,096,506,928 | 10% | ||
justlee87 | 0 | 2,274,009,407 | 100% | ||
tinyhousecryptos | 0 | 477,823,849 | 5% | ||
reggaesteem | 0 | 476,674,767 | 5% | ||
beta500 | 0 | 510,862,804 | 0.8% | ||
dechuck | 0 | 8,307,493,337 | 50% | ||
steemstem-trig | 0 | 165,712,743 | 10% | ||
baltai | 0 | 786,162,346 | 0.4% | ||
sandymeyer | 0 | 27,168,463,735 | 1% | ||
atheistrepublic | 0 | 940,278,041 | 0.4% | ||
ibt-survival | 0 | 36,664,838,490 | 10% | ||
lightpaintershub | 0 | 664,709,391 | 1% | ||
stemsocial | 0 | 83,620,560,347 | 10% | ||
ciderjunkie | 0 | 796,135,603 | 2.43% | ||
emrysjobber | 0 | 984,658,404 | 25% | ||
noelyss | 0 | 3,298,797,694 | 5% | ||
quinnertronics | 0 | 14,939,620,593 | 7% | ||
gohive | 0 | 4,712,787,988 | 100% | ||
doudoer | 0 | 668,301,876 | 50% | ||
meritocracy | 0 | 9,016,899,884 | 0.08% | ||
eumorrell | 0 | 2,313,944,163 | 100% | ||
stayten | 0 | 15,052,242,973 | 25% | ||
dcrops | 0 | 5,096,423,389 | 0.4% | ||
dodovietnam | 0 | 553,400,191 | 0.4% | ||
drricksanchez | 0 | 2,048,250,425 | 0.4% | ||
riandeuk | 0 | 20,402,808,307 | 100% | ||
nfttunz | 0 | 1,146,734,091 | 0.08% | ||
sarashew | 0 | 537,906,930 | 0.8% | ||
buffalobison | 0 | 27,611,494,674 | 50% | ||
podping | 0 | 1,098,691,786 | 0.2% | ||
pinkfloyd878 | 0 | 4,405,316,292 | 100% | ||
chessbrotherspro | 0 | 334,514,634,917 | 100% | ||
aries90 | 0 | 5,715,721,551 | 0.8% | ||
onewolfe | 0 | 475,998,080 | 25% | ||
migka | 0 | 4,420,500,764 | 90% | ||
waffleuncle | 0 | 1,300,255,141 | 30% | ||
rosmarly | 0 | 1,575,432,131 | 100% | ||
yixn | 0 | 5,368,183,341 | 0.4% | ||
tanray | 0 | 1,662,398,884 | 100% | ||
kqaosphreak | 0 | 656,679,086 | 10% | ||
waivio.curator | 0 | 1,602,330,030 | 2.99% | ||
ledgar | 0 | 5,995,192,038 | 100% | ||
imoogin3v3rm0r3 | 0 | 2,313,909,407 | 30% | ||
oabreuf24 | 0 | 7,948,180,940 | 100% | ||
taradraz1 | 0 | 2,618,921,235 | 100% | ||
ydaiznfts | 0 | 10,496,960,900 | 50% | ||
prosocialise | 0 | 8,371,770,188 | 5% | ||
misticogama | 0 | 875,426,507 | 5% | ||
titly | 0 | 477,513,215 | 50% | ||
mugueto2022 | 0 | 566,951,041 | 20% | ||
nazom | 0 | 1,095,954,759 | 50% | ||
raca75 | 0 | 616,139,053 | 50% | ||
sieghard1990 | 0 | 2,383,980,451 | 100% | ||
sbtofficial | 0 | 649,727,771 | 0.4% | ||
frankrey11 | 0 | 501,601,363 | 100% | ||
leogomez1414 | 0 | 2,064,754,635 | 25% | ||
stream4fun | 0 | 724,580,636 | 30% | ||
smariam | 0 | 2,530,560,942 | 25% | ||
humbe | 0 | 1,384,709,218 | 1% | ||
elcholitosanto | 0 | 16,687,905,341 | 50% | ||
opticus | 0 | 697,346,757 | 0.4% | ||
rhemagames | 0 | 699,109,301 | 0.4% | ||
riyaverma123 | 0 | 15,703,380,157 | 100% | ||
vscampbell | 0 | 970,915,675 | 50% | ||
snippets | 0 | 157,124,788,018 | 100% | ||
swap.ecency | 0 | 2,751,704,124 | 100% | ||
rainfirevt | 0 | 791,601,281 | 30% |
<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-methods-and-accessors-in-javascript-objects-by-albro-20231206t044409z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-12-06 04:44:09 |
last_update | 2023-12-06 04:44:09 |
depth | 1 |
children | 0 |
last_payout | 2023-12-13 04:44:09 |
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,753,163,525 |
root_title | "Methods and Accessors in JavaScript objects By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,449,614 |
net_rshares | 0 |
<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-methods-and-accessors-in-javascript-objects-by-albro-20231208t040518793z |
category | hive-169321 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-12-08 04:05:18 |
last_update | 2023-12-08 04:05:18 |
depth | 1 |
children | 0 |
last_payout | 2023-12-15 04:05:18 |
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 | "Methods and Accessors in JavaScript objects By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,499,633 |
net_rshares | 0 |