The javascript-objects tag has no wiki summary.
30
votes
7answers
8k views
Create an empty object in JavaScript with {} or new Object()?
There are two different ways to create an empty object in JavaScript:
var objectA = {}
var objectB = new Object()
Is there any difference in how the script engine handles them? Is there any reason ...
11
votes
3answers
154 views
What is the behavior of typing {a:1} giving 1, and {a:1, b:2} giving an error in a Javascript console?
The following will show in Firebug or in jsconsole.com or in other Javascript interactive console:
>>> foo = { a : 1, b : 2.2 }
Object { a=1, more...}
>>> foo.a
1
>>> ...
8
votes
5answers
135 views
Can someone explain me this javascript object “copy” behavior
I have the following code (I am using the jQquery libary):
var obj = {};
var objstring = '{"one":"one","two":"two","three":"three"}'
// first console output
console.log(objstring);
var jsonobj = ...
7
votes
5answers
232 views
Is there an environment-agnostic way to detect Javascript Host Objects?
I'm writing a Javascript stacktrace library. The library needs to detect wether a particular object or function was created by the programmer or was there as part of the environment (including ...
7
votes
4answers
128 views
Better Understanding Javascript by Examining jQuery Elements
Because jQuery is a widely used and mature collaborative effort, I can't help but to look at its source for guidance in writing better Javascript. I use the jQuery library all the time along with my ...
7
votes
5answers
113 views
Is there a better method than setting a variable to this?
In my javascript objects i found myself writing this:
this_object = this;
It seems it's the only way to pass member variables to external functions...
google.maps.event.addListener(this.marker, ...
6
votes
2answers
258 views
Array Like Objects in Javascript
I'm wondering how jQuery constructs it's array like object. The key thing I'm trying to work out is how it manages to get the console to interpret it as an array and display it as such. I know it has ...
6
votes
3answers
522 views
What are the differences between JSON and JavaScript object?
I am new to JSON and JavaScript object.
Can anyone please explain the differences between JSON and JavaScript object?
What are their uses?
Is one better than the other? or it depends on the ...
6
votes
5answers
479 views
chrome re-ordering object keys if numerics, is that normal/expected
i noticed that certain code that evaluates some shoe sizes JSON for an e-commerce site and outputs them on screen is messing up the order in chrome.
the JOSN string given can be:
...
5
votes
3answers
83 views
jQuery Plugin - Deep option modification
I am currently working a plugin with a settings variable that is fairly deep (3-4 levels in some places). Following the generally accepted jQuery Plugin pattern I have implemented a simple way for ...
5
votes
2answers
425 views
Wrapping a DOM element inside a JavaScript object
I've noticed a common pattern in the JavaScript I've been writing and was wondering if there is already a pattern out there that defines something similar as best practice? Essentially, it's how to ...
4
votes
3answers
45 views
JavaScript “this” referce to wrong object
Well, this doesn't really refer to the wrong object, but I do not know how to refer to the correct one.
function someObj() {
this.someMethod1 = function() {
var elementBtn = ...
4
votes
2answers
566 views
JavaScript - Settting property on Object in Image load function, property not set once outside function
Sometimes JavaScript doesn't make sense to me, consider the following code that generates a photo mosaic based on x/y tiles. I'm trying to set a .Done property to true once each Mosaic image has been ...
3
votes
4answers
52 views
Can I alias a key in an object literal?
I have an object literal which is used as a configuration element and is looked up for keys.
customRendering:{
key1: func(){....},
key2: func(){....}
}
I have a ...
3
votes
6answers
62 views
How does this javascript object array work?
I am trying to understand something very basic. If I have an object like this:
var topics = {}
And I do this:
topics[name] = ["chapter 1", "chapter 2", "chapter 3"];
When I log this object, I ...
3
votes
1answer
197 views
Advantage of using Object.create
Similar to, but different from this question. The code below is from JavaScript: The Definitive Guide. He's basically defining an inherit method that defers to Object.create if it exists, otherwise ...
3
votes
2answers
142 views
How to Search and Manipulate Complex JavaScript Objects in a jQuery fashion
In the context of a web app, I have a server which sends or receives JSON strings based on the input from the client. On client consumption, these JSON strings are immediately converted into ...
3
votes
1answer
193 views
using reserved words as property names, revisited
Can a reserved word be used as an object's property name?
This issue was raised in indirectly previous a stackoverflow question. the answer seemed general consensus by @Squeegy: You can use those ...
3
votes
3answers
305 views
How to generate nested json object from nested list with javascript/jquery
I would like to generate the following object:
var ideaBoard = {
"Staff Retreat" : {
"Games" : [
{"title" : "Rockband", "details" : "1hr"},
{"title" : "Texas ...
3
votes
5answers
1k views
jQuery create object from form fields
How can I create a object with a form's fields and values?
like this one:
{
fields:
{
name: 'foo',
email: 'foo@moo.com',
comment: 'wqeqwtwqtqwtqwet'
}
}
assuming ...
3
votes
6answers
616 views
Flatten a javascript object to pass as querystring
I have a javascript object that I need to flatten into a string so that I can pass as querystring, how would I do that? i.e:
{ cost: 12345, insertBy: 'testUser' } would become ...
3
votes
3answers
332 views
avoid needing to declare 'var me = this' for javascript prototype functions
Currently, I create objects in javascript by declaring a construction (regular function) then add methods to the prototype like so
function Test(){
}
Test.prototype.test1 = function(){
var me = ...
3
votes
2answers
257 views
Is there a better way to use Ext.apply to combine child/subobjects into another object?
I'm trying to apply the object properties from objA to objB but I realised Ext.apply is flawed (or blessing?) in a way where it only applies first level objects together.
Example:
var objA = {
...
3
votes
3answers
350 views
passing parameter to closure function in javascript
MyLibrary.MyModule =
(
function initialise() {
this.id = id;
this.c = document.getElementById(id);
this.ctx = ...
3
votes
2answers
122 views
Why (3).constructor is valid while “constructor” in (3) is not valid?
(3).constructor is Number, but "constructor" in (3) is TypeError, why?
2
votes
1answer
41 views
How do unused Javscript object methods impact memory usage?
I am working with a Javascript library (openlayers) and am trying to optimize some of the classes to reduce the overall memory footprint. I've noticed that for some of the classes I have no need for ...
2
votes
2answers
45 views
Google Map API doesn't work when DOCTYPE declared in Chrome and Firefox
I have this weird problem where my Google Maps API script doesn't work, no map is rendered, when I declare a DOCTYPE.
Without a DOCTYPE I get the following warning, but it works and a map is ...
2
votes
1answer
44 views
JavaScript object creation methods
I've been searching around Stack Overflow, and the web in general, for a decent explanation of something I'm seeing in some legacy JavaScript. So far I haven't had much luck, so I've decided to take ...
2
votes
1answer
44 views
Trying to understand the new keyword
I'm trying to understand exactly what the javascript new keyword means, why it is necessary and when I should use it.
Consider the following examples:
var x = new function(){
var ...
2
votes
3answers
37 views
Javascript weird nested assignment issue in a object literal
I have a JS object property defined in an object literal:
reqHeader: [{name:'Chris'},{age:'06'}]
which I am nesting inside another property in the same object literal:
content: {headers:
...
2
votes
1answer
84 views
Titanium Mobile Controller troubles
Ok so Im working on a mobile app and I wanna make sure my structure is right so I can continue to add more complex things.
Basicaly I am asking if this is the best way to do this.
this is my ...
2
votes
1answer
122 views
Should I use CoffeeScript soaks and the existential operator together?
I'm working on a script that accepts a settings object, but uses default values where settings are not provided.
I just wrote the following line of CoffeeScript:
iframe_width = ...
2
votes
0answers
52 views
In Javascript, Difference Between `new MyFunction()` and `new MyFunction` [closed]
Possible Duplicate:
new MyClass(); vs new MyClass;
Given a Javascript function like...
var MyFunction = function() {
/* Any arbitrary Javascript */
}
Are the two following lines of ...
2
votes
2answers
56 views
Creating events in Javascript
If I have a list of functions that are serving as event subscriptions, is there an advantage to running through them and calling them with .call() (B below), or more directly (A)? The code is below. ...
2
votes
3answers
76 views
Invoke a javascript object method from within a callback
I define the following MyClass and its methods in a user script:
function MyClass() {
this.myCallback = function() {
alert("MyClass.myCallback()");
};
this.startRequest = ...
2
votes
2answers
110 views
A clean way of checking whether an object is an instance of window.constructor
The title pretty much says it all. I need to check whether an object is an instance of the DOM:Window interface. window will pass the test, window.frames[xyz] as well, should the iframe exist.
The ...
2
votes
1answer
727 views
JSON Error when parsing “… has no method 'replace'”
Let me preface this with the admission that I am a complete programming and javascript noob and that fact is the source of my trouble.
I'm trying to populate a large array of custom objects from a ...
2
votes
4answers
79 views
Why can't I use 'this' when creating this javascript object literal?
The html:
<div id="slide">
<div>This is one</div>
<div>This is two</div>
<div>This is three</div>
</div>
JavaScript:
var slider = {
...
2
votes
5answers
1k views
Getting and using remote JSON data
I'm working on a little app and using GWT to build it.
I just tried making a request to a remote server which will return a response as JSON.
I've tried using the overlay types concept but I couldn't ...
2
votes
1answer
114 views
Deleting JS Object Properties a few levels deep
I have an object like this:
var myObj = {
first: {
sub: {
level: "some text",
level2: "some more text"
},
sub2: {
level3: "Something"
...
2
votes
7answers
216 views
Are Javascript arrays primitives? Strings? Objects?
I've been monkeying with Javascript for several years now (since back in the day before Gmail, Facebook, and YouTube, if you believe such a day existed). Big high-five to Thau.
My Question, as such:
...
2
votes
3answers
199 views
Setting a Javascript Private Variable with the same name as a Function Parameter?
function Foo() {
var myPrivateBool = false,
myOtherVar;
this.bar = function(myOtherVar) {
myPrivateBool = true;
myOtherVar = myOtherVar; // ?????????????????
};
}
...
2
votes
6answers
89 views
In javascript, when creating properties, which is the right way or better syntax?
properties(keys) can be accessed and set using the dot notation as well as the square brackets. any advice when to use dot prototype syntax
var myObj = {};
myObj.myProp1 = 'value1'; //works, an ...
2
votes
4answers
83 views
Reading a Javascript Object
How do I read a Javascript Object when I don't know what's in it?
I've been working on node.js and have a variable for which I really don't know what's in it. When I try sys.puts:
sys.puts(headers) ...
2
votes
1answer
210 views
jQuery Datalink not working with object methods
I have a javascript object with several properties. The object also contains an instance method that returns the result of a calculation on two of the object's properties.
I'm using the new Jquery ...
2
votes
5answers
205 views
How JavaScript does OOP?
I am learning about creating objects in JavaScript. When I do this ...
var Person = {
name: "John Doe",
sayHi: function() {
alert("Hi");
}
};
I know that I am creating an instance of a ...
2
votes
4answers
240 views
Creating New Objects in JavaScript
I'm a relatively newbie to object oriented programming in JavaScript, and I'm unsure of the "best" way to define and use objects in JavaScript. I've seen the "canonical" way to define objects and ...
2
votes
3answers
495 views
Packing tree into array in Javascript
Ok, so this shouldn't be difficult, however I have encountered weird and bizarra flukes.
I am trying to pack a tree into an array, where each node is something like:
title: string-for-display
key: ...
1
vote
0answers
48 views
Link to a parent object [migrated]
I have a couple of nested objects, where A is always a part of B.
May I use the following code to access owner's properties and methods?
function A( owner ) {
this.value = function () { return ...
1
vote
2answers
30 views
How to get an array of all links on a website in JavaScript
I need a list/collection/array/whatever of all links on a website.
Currently I'm using window.content.document.links, but that doesn't work an all websites. (Those websites produce an empty array.) ...