Prototype programming is a type of object-oriented programming that eschews the use of classes. It is available in languages such as Self, LispStat, JavaScript, and R.
0
votes
0answers
15 views
CORE JAVASCRIPT: Could any one know the correct Syntax for String.prototype,indexOf? (typeof: object)?
I bumpt into several issues handling String.indexOf in earlier Browsers...
I got this, for my application:
String.prototype.MyindexOf = function (searchElement /*, fromIndex */ ) {
"use strict";
...
1
vote
2answers
29 views
How many times parent object gets created during prototypal inheritance
I have read a lot on how prototypal inheritance works and how the interpreter travels the prototype chain to find the property.
function Man()
{
this.hands=2;//1
}
function father()
{
...
0
votes
2answers
66 views
Prototyping in Java instead of extending
Is Javascript-like prototyping anyhow achievable, even using Reflection? Can I wrap my object inside another one, just to extend its functionality with one or two more methods, without wiring all its ...
0
votes
4answers
74 views
What does this Animal = function Animal do?
I'm trying to understand this JavaScript code produced by CoffeeScript.
I'm used to seeing functions defined as:
function Animal(name) {...}
var Animal = function(name){...};
But CoffeeScript ...
2
votes
2answers
41 views
Prototypical inheritance without new or Object.create
Is there any way whatsoever to enable an object to inherit from a prototype (1) without using new, and
(2) without using Object.create. (I had a suspicion that new is present inside the Object.create ...
3
votes
2answers
28 views
JS Prototypal Inheritance: childs use the same parent properties?
Let's say I have Player object:
var player = function(name) {
this.handlers = {};
}
player.prototype.on = function(event, callback) {
if (!this.handlers[event]) {
...
0
votes
1answer
40 views
How to change a method in DOM objects prototype
I want to change open() method in XMLHttpRequest objects. actually I need to change every url that will send trough xhr. how can I do this?
for example when xhr objects open one request for ...
1
vote
2answers
43 views
Javascript error: this.form is undefined, I can't get an object variable in a member method
I am using the following code:
var frontPic = e.target.files[0]
var frontPicName = frontPic.name
var salonId=$("#salonId").val()
upload = new Upload(frontPicName, salonId)
...
1
vote
0answers
29 views
Chaining Object.
I'm having a difficult time trying to figure out how to chain objects the way I would like to do it.
Lets the following example:
var s = function(){
this.text = {
hi: function(){
...
3
votes
2answers
110 views
Javascript inheritance: calling Object.create when setting a prototype
i'm learning some aspects of Object-oriented Javascript. I came across this snippet
var Person = function(firstName, lastName)
{
this.lastName = lastName;
this.firstName = firstName;
};
...
1
vote
1answer
50 views
Using Javascript namespace closures and prototype together fails?
I'm using namespacing in my projects by folllowing this pattern:
// simply a namespace attic object
// parent to my worker objects
;(function( RoaringSky, undefined )
{
var opt = {
...
11
votes
1answer
101 views
why isn't Object.prototype === to myNewObj.prototype?
So if you look at this fiddle http://jsfiddle.net/r0k3t/z8f2N/1/ you can see that
var me = { fName: "ken", lName: "n" };
console.log(Object.prototype === Object.getPrototypeOf(me));
returns true. ...
1
vote
0answers
115 views
temporary global variables/functions and prototype overrides to write a JS DSL
I'm exploring a variety of options for a JavaScript routing framework that I'm working on, and I'd like to provide a DSL written in JavaScript for defining the router.
I had the idea of using ...
1
vote
3answers
86 views
Determine name of a JavaScript object instance's class
Imagine a JavaScript "class" Foo:
var Foo = function()
{
};
And an instance of that class:
var foo = new Foo();
Can I obtain the string Foo directly from the instance foo, or is Foo just a ...
1
vote
2answers
65 views
When using Javascript, is it true that we typically will still make “Generic Objects” and use it as “templates” for other concrete objects? [closed]
It seems that when using Javascript's Prototypal Inheritance, we would still typically do this, say, if it is programming a game of Mario Kart:
Object
|---GameObject
|---KartDriver
...
0
votes
2answers
116 views
Extending Object's prototype has weird behavior in Chrome
Can anyone please explain why this code behaves so weird under Google Chrome:
<script>
console.log({someproperty:'hello'}) ;
Object.prototype.get = function(){} ;
</script>
The content ...
0
votes
1answer
149 views
Constructor variables in prototype model not accessible after ajax call
I cannot access the constructor of a class when I return from an asynchronous call using a callback.
In this case I cannot access the test variable defined in the Myclass1 constructor
I can't find a ...
0
votes
2answers
44 views
Define private variable outside of the function which going to be used by new creation pattern
This question is simplified version of my old question Adding scope variable to a constructor. Question is simple can I add priv variable to the fu()'s scope without changing the function? (not adding ...
4
votes
2answers
115 views
There is something about Javascript inheritance that I can't understand
I was reading Introduction to Object-Oriented JavaScript from Mozilla Developer Network, time to learn so serious Javascript before start using node.js.
Anyway, inheritance thing seems so obscure to ...
2
votes
4answers
134 views
creating an instance of a function in javascript
I want to know whether this sentence is correct?
You can do:
var a = new A();
if and only if A is instanceof Function.
Simply you can create an instance of function and you know a function is ...
7
votes
4answers
238 views
prototypal inheritance concept in javascript as a prototype based language
You know Javascript is a prototype-based programming language .
I have read some books about Javascript and its prototypal inheritance concept but:
"If you can't explain it to a six-year old, you ...
3
votes
4answers
171 views
Why defining properties in the prototype is considered an antipattern
I often see this pattern to define javascript objects
function Person(name) {
this.name = name;
}
Person.prototype.describe = function () {
return "Person called "+this.name;
};
And in this ...
1
vote
3answers
143 views
difference between using this and prototype to define methods of a class in JavaScript? [duplicate]
Possible Duplicate:
Javascript - this Vs. prototype
Advantages of using prototype, vs defining methods straight in the constructor?
Prototype or inline, what is the difference?
When ...
-2
votes
2answers
158 views
JavaScript Prototyping
So, I have some code I'm trying to understand (from Dragdealer by Ovidiu Chereches), but I'm having some difficulties.
Dragdealer.prototype =
{
init: function(wrapper, handle, options)
{
...
0
votes
1answer
104 views
Object Prototyping not working in Canvas Game
So I'm writing a silly little canvas game, mainly a copy of Asteroids. Anyway, I have my button listener set up so that when the user presses the spacebar, the player object's fire() function is ...
1
vote
2answers
291 views
JavaScript object detection
I am currently practicing javascript and I'm currently having trouble with object detection. I want to create an object and detect whether it exists. Below is some example code I am currently using.
...
4
votes
2answers
235 views
How to create an object with private members using Object.create() instead of new
EDIT: I figured it out from Bergi's answer in the end.
Thanks Bergi.
pubPrivExample = (function () {
return {
init : function () {
var private;
this.setPrivate ...
3
votes
4answers
246 views
Understanding javascript prototype
I am learning about JS Prototype.
If I set a prototype of a constructor(A) from an instance of some other constructor(B), Is that instance (of B) would introduced shared properties in A?
Example 1
...
0
votes
3answers
173 views
Javascript prototype method override not found
I have this base type:
typeA = function () {
};
typeA.prototype = {
do = function() { alert ("do something"); },
doMore = function() { this.do(); }
}
and an inherited type typeB:
typeB = ...
0
votes
1answer
80 views
js prototype class.create coexistance between variables in subclass and superclass
Very simply put, I have lots of classes that share variables and have their own variables. So I created a super class called Resource and many subclasses. The problem is that I want to be able to set ...
0
votes
1answer
67 views
Prototype property with same name as object property
I have a small snippet of code that assigns a prototype property and an object property using the same name. Accessing this testNumber after creating the object will always show the object property, ...
0
votes
2answers
92 views
How do you access constructors variables?
I have a "class" within Javascript with a variable assigned in the constructor. I also use prototype to store variables/methods:
var MyClass = function()
{
this.age = 100;
};
...
0
votes
1answer
147 views
Difference between method in a constuctor function vs function's prototype property [duplicate]
Possible Duplicate:
Advantages of using prototype, vs defining methods straight in the constructor?
I'm trying to get a grip on the prototype property in JavaScript but I'm having trouble.
...
6
votes
3answers
862 views
__proto__, when will it be gone? Alternatives?
Mozilla claimed it would remove __proto__ a while back (~2008) and it is still in the browser. Is it still going to be deprecated? It works in Opera, (Safari I think) and Chrome as well. I don't need ...
26
votes
2answers
2k views
What is the difference between __proto__ and prototype in Java script?
This figure again shows that every object has a prototype. Constructor
function Foo also has its own __proto__ which is Function.prototype,
and which in turn also references via its __proto__ ...
0
votes
1answer
173 views
Javascript - Prototype is not reading constructor variables
I am having issues accessing public variables from an object in a prototyped function... from what I have read, this should work, but perhaps someone with a more experienced eye can point out what I ...
3
votes
1answer
205 views
[[Prototype]] vs prototype: ..what is the difference? (MyCons.__proto__ === MyCons.prototype) equals FALSE
It seems like there is a difference here...
Let's say we have function MyConstructor() {}
MyConstructor's [[Prototype]] is Function.prototype, not MyConstructor.prototype.
In other ...
3
votes
2answers
436 views
Prototypal inheritance in JS and how to get parent properties
I'm trying to have properties inherit from a parent, but I'm not clear as to the right way of doing it.
Lets say I have:
var Animal = function(name){
this.offspring = [];
this.name = name;
...
1
vote
3answers
631 views
how to overwrite a builtin method of javascript native objects
Lets say we have alert method of window object. I would like to enhance it with nice alertbox.
Also I want to save the existing alert method so that we can switch back once our application is over.
...
1
vote
3answers
458 views
Javascript: What are multi-level prototype hierarchies and why we should avoid it
In the Google Javascript Coding Guidelines, it said that we should not use Multi-level prototype hierarchies because "These hierarchies are much harder to get right than they first appear!". Actually ...
2
votes
4answers
310 views
How do you do inheritance in JavaScript without sharing the same instance of the super class between all instances of the sub class?
I noticed that every tutorial on how to do JavaScript inheritance does this:
SubClass.prototype = new SuperClass();
But this will create a single instance of the super class and share it among all ...
2
votes
2answers
885 views
Child class can't call its parent's prototype method
I'm learning JS prototypes.
From Java language point I expect,that SpecificRectangle object will have access to area() method,due to area() is the method of its parent(Rectangle class) prototype.
...
1
vote
0answers
168 views
Prototype cascading select compatibility with Firefox and Internet Explorer
I've got this not very elegant block of code, which is supposed to be a multilevel/cascade menu: you initially see only the first select; if you choose the 4th item, it opens the 2nd select and so on. ...
4
votes
2answers
128 views
Why “String.prototype={}” won't work?
I wrote this code in javascript:
String.prototype = {
a : function() {
alert('a');
}
};
var s = "s";
s.a();
I expect it alert an a, but it reports:
s.a is not a function
Why?
2
votes
3answers
331 views
Passing a prototype's function as parameter without loosing the 'this' context in Javascript
I'm defining a 'class' in javascript by means of prototype.
The first time func() runs, it works, but when it's called the second time, through a setTimeout, it fails because this time it has lost ...
4
votes
3answers
2k views
How to declare function pointer in header and c-file?
I'm a little confused over how to declare a function pointer in a header file.
I want to use it in main and a file called menus.c and declare it in menus.h I assume.
We want to initialize to point to ...
0
votes
1answer
119 views
Accessing properties from prototype functions
I'm reusing an old application (a game) so it's possible to run several games at ones.
By that reason I've changed the properties to "this.propery", which are used everywhere in my application.
...
0
votes
1answer
141 views
Why can't I use this in (JavaScript) Worker when defining an object?
Coming from the Java (OOP) world, I am used to classes, inheritance and multi threading. Now for my little walkabout in the JavaScript domain, I try to utilize these paradigms and patterns where ...
-1
votes
1answer
90 views
Why can't invoke the function defined in prototype of a function?
I've some javascript code:
wzq.CategoryTree = function(config) {
};
wzq.CategoryTree.prototype.hello = function() {
alert("Hello");
};
var categoryTree = new wzq.CategoryTree({});
...
0
votes
4answers
198 views
How to use prototype method in class constructor
I habe read here about defining method for a Javascript class Advantages of using prototype, vs defining methods straight in the constructor? and I choose prototype way. But I get an issue, for ...




