Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Programming Q&A
object object error? Javascript
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Adil" data-source="post: 275373" data-attributes="member: 3031"><p>[CODE]</p><p>function Reminder() {</p><p>}</p><p></p><p>Reminder.prototype.addReminder = function() {</p><p> this.reminder_data = prompt('What is your reminder?');</p><p>}</p><p></p><p>var r = new Reminder();</p><p>r.addReminder();</p><p>console.log(r.reminder_data);</p><p>[/CODE]</p><p>This should work.</p><p>It creates a reminder class, adds the method 'addReminder' to the prototype chain, and sets an instance variable.</p><p>I suggest watching Douglas Crockford's JavaScript talks, and reading through mdn.</p><p><img src="/styles/default/xenforo/smilies/emojione/smile.png" class="smilie" loading="lazy" alt=":)" title="Smile :)" data-shortname=":)" /></p></blockquote><p></p>
[QUOTE="Adil, post: 275373, member: 3031"] [CODE] function Reminder() { } Reminder.prototype.addReminder = function() { this.reminder_data = prompt('What is your reminder?'); } var r = new Reminder(); r.addReminder(); console.log(r.reminder_data); [/CODE] This should work. It creates a reminder class, adds the method 'addReminder' to the prototype chain, and sets an instance variable. I suggest watching Douglas Crockford's JavaScript talks, and reading through mdn. :) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Programming Q&A
object object error? Javascript
Top