Tagged Questions
The javascript-objects tag has no wiki summary.
26
votes
7answers
7k 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
129 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
4answers
217 views
Is there an environment-agnostic way to detect Javascript Host Objects?
I'm after an environment-agnostic way to determine if a particular object in Javascript is a host object (see ECMAScript 3 - 4.3.8).
So far I've only been able to come up with solutions that depend ...
7
votes
4answers
125 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
221 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 ...
5
votes
3answers
77 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
3answers
457 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 ...
5
votes
5answers
448 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:
...
4
votes
2answers
394 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
2answers
556 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
1answer
65 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 ...
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
176 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
122 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
167 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
270 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
6answers
530 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
289 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
233 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
311 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
2answers
20 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
39 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
4answers
50 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 ...
2
votes
3answers
35 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
105 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
51 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
68 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
99 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
636 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
77 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
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 ...
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
105 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
206 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
182 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
88 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
82 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
204 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
200 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
227 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
486 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
3answers
38 views
Why would a simple JS undefined check trigger an error?
I'm looping through a large object where the internal properties are not all consistent. However, when I throw an if(typeof){} statement around the object, it's still triggering an error:
The ...
1
vote
0answers
33 views
Synchronous vs. asynchronous for publish subscribe communication between JavaScript objects
I implemented the publish subscribe pattern in a JavaScript module to be used by entirely client-side oriented JavaScript objects. This module has nothing to do with client-server communications in ...
1
vote
4answers
34 views
javascript object key and value as array
i want to create an object dynamically of the form - {"abc": [x1,x2], "efg": [x3, x4, x1]}
The following code is not working.. what's the problem here ?
var catCmp = {};
var x1="abc";
var x2="efg";
...
1
vote
2answers
47 views
JavaScript new objects inside objects duplicating
I'm taking an adventure into the depths of JavaScript and have come across a little problem that I can't get my head around.
Everything I know about programming is self taught, this problem might ...