Tagged Questions
The object-literal tag has no wiki summary.
60
votes
6answers
42k views
How to Loop through JavaScript object literal with objects as members?
How can I loop through all members in a JavaScript object including values that are objects.
For example, how could I loop through this (accessing the "your_name" and "your_message" for each)?
var ...
26
votes
7answers
30k views
How can I add a key/value pair to a JavaScript object literal?
Here is my object literal:
var obj = {key1: value1, key2: value2};
How can I add {key3: value3} to the object?
13
votes
7answers
935 views
Are object literals Pythonic?
JavaScript has object literals, e.g.
var p = {
name: "John Smith",
age: 23
}
and .NET has anonymous types, e.g.
var p = new { Name = "John Smith", Age = 23}; // C#
Something similar can be ...
8
votes
3answers
362 views
Does Python support something like literal objects?
In Scala I could define an abstract class and implement it with an object:
abstrac class Base {
def doSomething(x: Int): Int
}
object MySingletonAndLiteralObject extends Base {
override def ...
8
votes
3answers
2k views
JavaScript - Advantages of object literal
I've read that rather than simply writing a bunch of functions, I should use object literal.
Can someone explain what the advantages of object literal are with examples, because I don't understand ...
7
votes
3answers
475 views
Safely parsing a JSON string with unquoted keys
json2.js is strict requiring all object keys be double-quoted. However, in Javascript syntax {"foo":"bar"} is equivalent to {foo:"bar"}.
I have a textarea that accepts JSON input from the user and ...
7
votes
3answers
1k views
Is this Javascript object literal key restriction strictly due to parsing?
Please refer to the code below, when I "comment in" either of the commented out lines, it causes the error (in IE) of "':' expected". So then is my conclusion correct, that this inability to provide ...
7
votes
4answers
478 views
Why are some object-literal properties quoted and others not?
I see this all the time: object literals declared such that some keys are surrounded with quotes and others are not. An example from jQuery 1.4.2:
jQuery.props = {
"for": "htmlFor",
"class": ...
7
votes
2answers
2k views
adding prototype to object literal
STORE = {
item : function() {
}
};
STORE.item.prototype.add = function() { alert('test 123'); };
STORE.item.add();
Been trying to figure out what's wrong with this quite a while. Why doesn't ...
7
votes
9answers
649 views
Simple JavaScript question: what is this thing?
var something = {
wtf: null,
omg: null
};
My JavaScript knowledge is still horribly patchy since I last programmed with it, but I think I've relearned most of it now. Except for this. I don't ...
5
votes
4answers
6k views
Javascript: How to create an array of object literals in a loop
I need to create an array of object literals like this:
var myColumnDefs = [
{key:"label", sortable:true, resizeable:true},
{key:"notes", sortable:true,resizeable:true},......
In a loop ...
5
votes
5answers
1k views
How to determine if an object is an object literal in Javascript?
Is there any way to determine in Javascript if an object was created using object-literal notation or using a constructor method?
It seems to me that you just access it's parent object, but if the ...
4
votes
2answers
110 views
Javascript array/object syntax fail
Why do I get this error with this code: Uncaught SyntaxError: Unexpected token { on line 1.
var cube_points = {
{'x' : 100, 'y' : 100, 'z' : 100},
{'x' : 100, 'y' : 100, 'z' : -100},
{'x' ...
4
votes
3answers
482 views
Self-references in object literal declarations
Is there any way to get something like the following to work in JavaScript?
var foo = {
a: 5,
b: 6,
c: this.a + this.b // Doesn't work
};
In the current form, this code obviously ...
4
votes
2answers
70 views
What languages provide the use of object literals?
What languages provide the use of object literals? (Or in what languages could you easily emulate them?) Can you give a code example?
Starting with the obvious javascript snippet:
var someObj = {
...
4
votes
2answers
364 views
Javascript data structure for fast lookup and ordered looping?
is there a data structure or a pattern in Javascript that can be used for both fast lookup (by key, as with associative arrays) and for ordered looping?
Right, now I am using object literals to store ...
3
votes
2answers
32 views
Convert object literal notation to array
I used a literal as a dictionary, but a third party binding tool only takes arrays.
This is one way, is there a better one?
var arr = [];
$.each(objectLiteral, function () { arr.push(this); });
3
votes
3answers
505 views
Elements keeping original values in jQuery objects after PostBack
I am using ASP.NET 3.5 combined with the atrocious UpdatePanel, jQuery.delegate(), and JavaScript object literals.
I use jQuery.delegate() to persist the event handlers, which do get triggered after ...
3
votes
4answers
209 views
How to access an outer member from a nested object literal?
In the following code, can the x member be accessed from the nested object literal?
var outer = {
x : 0,
inner: {
a : x + 1, // 'x' is undefined.
b : outer.x + 1, // ...
3
votes
2answers
92 views
Why does my “next” property disappear in my JavaScript hash in Firefox 3.6
I'm creating a hash as an options object to pass to a jQuery plugin. One of the keys I need to use, as defined by the plugin, is next.
This works fine in Safari (so I assume Webkit in general) but ...
3
votes
3answers
1k views
Calling a function in javascript object literal notation declaration
I'm trying to call a function within an object literal that I created, using the this keyword. But an error shows up saying this.doTheMove() is not a function:
window.onload = function(){
var ...
3
votes
2answers
3k views
JavaScript object literal length === undefined?
I am working on this animation function but I have a problem. I can't seem to perform what should be an easy task, I can not get the length of an object. If you check out that jsFiddle you can see ...
3
votes
3answers
341 views
Javascript object literal: why can't I do this?
I have the following (simplified) object literal. The icons method uses closure to hide the icons variable, which I'd like to have as an associative array for later lookups.
var MapListings = {
...
3
votes
2answers
2k views
Dynamic object literal in javascript?
Is it possible to creat an object literal on the fly?
Like this:
var arr = [ 'one', 'two', 'three' ];
var literal = {};
for(var i=0;i<arr.length;i++)
{
// some literal push method here!
...
3
votes
3answers
2k views
How to add private variable to this Javascript object literal snippet?
Found this at MDC but how if I'd wanted to add a private variable to the
var dataset = {
tables:{
customers:{
cols:[ /*here*/ ],
rows:[ /*here*/ ]
},
...
2
votes
3answers
71 views
Private var inside Javascript literal object
How can I declare a private var inside a literal object? Becasuse I've this code:
var foo = {
self: null,
init: function() {
self = this;
self.doStuff();
},
...
2
votes
3answers
98 views
Can a Javascript literal object fire events?
I have a Javascript object literal:
var Toolbar = {
init: function(toolbar) {
this.Bar = $(toolbar); // scope is Toolbar object literal
...
2
votes
2answers
43 views
Referring to previously defined properties within an object literal
When using object constructors, properties can be directly assigned to the value of previously defined properties:
var foo = new (function() {
this.bar = 5;
this.baz = this.bar;
})();
...
2
votes
4answers
105 views
Stuck on a simple object literal scope / referencing issue
Here's a sample of my structure:
this.is.a.really.long.namespace = {
inputs : {},
buttons : {},
panels : {},
fn : {
abc : function() {},
def : function() {}
}
...
2
votes
4answers
118 views
dynamic keys for object literals in Javascript
Ok so I'm working away on a project in Nodes, and I've come across a small problem with the keys in object literals, I have the following set-up:
var required = {
directories : {
...
2
votes
2answers
190 views
How to Sort a JS Object Literal?
If I have this JS object literal:
var foo = {
Sussy: 4,
Billy: 5,
Jimmy: 2,
Sally: 1
};
How can I create a new, sorted object literal:
var bar = {
Sally: 1,
Jimmy: 2,
...
2
votes
4answers
208 views
Javascript, can I pass a reference to a current object to function within an object literal definition?
Good Morning,
I have a function that takes an options hash as it's parameter, can I call that function inside an object literal definition? Like this
function dataCallback(opts) {
var ...
2
votes
1answer
240 views
Issues creating object literal using anonymous types in c#
I'm trying to build the c# approximation of a JavaScript object literal to be passed to a view model in asp.net MVC:
var obj = new dynamic[]{
new { name: "Id", index: "Id", width: 40, align: ...
2
votes
1answer
171 views
javascript object literal, value/no value?
I am using
console.log(p);
console.log(p.datestrshow);
However the output in the console is
Why is it undefined when it is clearly not?
doing
for(i in p)
console.log(i+': ', (typeof p[i] ...
2
votes
3answers
249 views
reference variable in object literal?
say I have
myfunc({
var1: 1,
var2: 2,
})
if i want to have a value that makes use of the current unnamed object, how would I do this?
eg if I wanted
myfunc({
var1: 1,
var2: 2,
var3: ...
2
votes
1answer
142 views
Help adding new property to object literal
Why is this returning:
tracker.paramsToTrack is undefined
var tracker = {};
var paramsToTrack = ['a', 'b', 'c', 'd', 'e'];
for (p in paramsToTrack)
{
if(params[paramsToTrack[p]])
{
...
2
votes
3answers
651 views
Javascript object literal: value initialization?
i was using object literal to create an object with methods.
Here a simple example.
var SizeManager = {
width : 800,
height : 600,
ratio : this.width / this.height,
resize : function ...
1
vote
3answers
28 views
JavaScript Object literal method: Recursive call
Is it possible to call recursively a method from an object literal?
For example:
(function () {
'use strict';
var abc = ['A', 'B', 'C'],
obj = {
f: function () {
...
1
vote
2answers
36 views
What is the value after the comma in a JavaScript array literal definition?
I have been watching a video of a conference (See: Good JavaScript Habits for C# Developers at 13:23 in the video). The presenter has been discussing best practices in JavaScript. One of the tips he ...
1
vote
2answers
39 views
Call functions from function inside an object (object literal)
I'm learning to use object literals in JS, and I'm trying to get a function inside an object to run by calling it through another function in the same object. Why isn't the function "run" running when ...
1
vote
1answer
70 views
Reference nested 'sibling'-property in object literal
I want to reference a nested property in an object literal from within another property in that same object literal.
Consider the following contrived example:
var obj = {
product1: {
...
1
vote
2answers
48 views
Is it possible to loop through an object, and get the key names ($key => $value)?
In PHP, we can loop through an associative array, and get the values of both the key and the value like this:
$myArray = array(
'key1' => 'value1',
'key2' => 'value2'
);
...
1
vote
2answers
297 views
Backbone.js: How to call methods on the collection within an object literal
I have the following backbone.js code. I'm using an object literal for organizing my code, which has left me with a question regarding the best way to proceed. The application (in its simplified form ...
1
vote
1answer
46 views
How to access content in an object literal?
Can someone tell me what the best way is to store content in an object literal and how to access it using my JS pattern? I can't seem to get it to work.
Namespace.object = {
var data = [{"myid1" ...
1
vote
2answers
133 views
Benefits of using object literal notation in an object constructor?
I'm trying to understand the finer points of JS and am seeing many examples of object literals being passed into constructors. What are the benefits of this approach and how would I create my object ...
1
vote
2answers
155 views
Sort array of objects
I have an array of object literals like this:
var myArr = [];
myArr[0] = {
'score': 4,
'name': 'foo'
}
myArr[1] = {
'score': 1,
'name': 'bar'
}
myArr[2] = {
'score': 3,
'name': ...
1
vote
4answers
192 views
private variables in object literals?
is there anyway we can create a "singleton/static class" with private variables?
I had an attempt and this is what i had:
var TheStaticClass = new (function () {
var a=1;
...
1
vote
5answers
212 views
In javascript, when to use object literal and when to use array?
Here's a sample. My concern is both seem to do the job. which of them to prefer?
var fooArr = [{ "bar": {"blah": 9 } }];
for(var i in fooArr) {
var value = fooArr[i].bar.blah;
...
1
vote
3answers
266 views
Setting object literal property value via asynchronous callback.
I'm creating a self-contained javascript utility object that detects advanced browser features. Ideally, my object would look something like this:
Support = {
borderRadius : false, // values ...
1
vote
1answer
57 views
Object Literal in Firefox extension
I have an extension that needs to pop up a window and then close it.
var my_extension = {
window: null,
popup: function(){
my_extension.window = window.open(...)
},
close: ...