JavaScript Object Literal An object literal is a comma separated list of name value pairs wrapped in curly braces. In JavaScript an object literal is defined as follows: var myObject = { sProp: 'some string value', numProp: 2, bProp: false };

learn more… | top users | synonyms

0
votes
0answers
32 views

How to use this for the main object on Object Literal Notation

I'm learning about Object Literal Notation, but I'm trying to, or I think I'm doing is something a bit complex. For example What I'm trying to accomplish is Initializa my object Store a jquery ...
0
votes
1answer
21 views

How do I replace global RegExp matches in JavaScript

In an attempt at simple substitution, I tried something like this: var dict = { ... }; var selector = ("'$greetings' '$friend'").replace(/\$([^']+)/g, dict[RegExp.$1]) But only one of the ...
2
votes
4answers
65 views

Is there a way to create a dynamically object literal value in JavaScript?

In other words, let the value be a variable. Something like this: var a=3,b=4; var obj = {x : a, y : b}; alert(obj.x); //will display '3' a=2; alert(obj.x); //want it to display '2' - how can i ...
0
votes
2answers
32 views

Loop checkboxes and built JavaScript object literal

Hey all i am trying to figure out a way to add the data to a JS object when i loop to see which checkboxes on the page are checked: jQuery('#doaction').click(function () { var bulkSelected = ...
0
votes
1answer
24 views

Is it possible to initialize an object with the literal notation if there are dependencies among its members?

Suppose I have an object like this a = {b = function() { return 1 }, c: 2, f: 3} a.z = a.b() Is there a way to write it in a single assignment of object literal notation? Similar to: a = {b: ...
-1
votes
1answer
36 views

Does JavaScript hoist if statements when object literals are involved?

Given an object literal inside the callback method of an AJAX request: node = { alpha: "", beta:"", charlie:"", delta:"" }; If I assign values to each of the keys: ...
2
votes
2answers
40 views

Object literal root property is undefined when used from within another property's function

I've been reading for hours and can't seem to find an answer that suits my needs. I don't want to change up the structure at this point, due to the size of the code. I am trying to find a solution ...
0
votes
2answers
33 views

Is there a simple way to make these two lines into a one-liner?

Here are the two lines: pixels[x-left] = {}; pixels[x-left][y] = true; It would greatly allow me to clean up some code if the two could be combined into a single expression. My first attempt ...
0
votes
3answers
41 views

index of array that is passed

How do I retrieve the index of the array that is passed? The solution I currently use is sending the index too, but that doesn't feel right. jsFiddle var obj = {arr: [{x: 1, y: 2},{x: 3, y: 4},{x: ...
0
votes
2answers
36 views

Javascript + Basic Object Literal Scope Issue

I know this is very basic, but why does x return undefined in this code block? Is there a way to define a property and immediately use it to set another property? var grid = { x : 75, ...
2
votes
2answers
192 views

Javascript “abstract method”

My terminology is a bit off, so feel free to correct where necessary. I want to overload a function in javascript and the 'base class' to make use of the overloaded method as well as the inherited ...
0
votes
3answers
30 views

How to retrieve value from key:function the same way as key:value in JavaScript?

How can I retrieve foo2.x the same way as I retrieve foo1.x? var foo1 = {x: 4}; var foo2 = {x: function(){return addOne(foo1.x);}} function addOne(var1){return (var1 + 1);} alert(foo1.x); ...
0
votes
2answers
70 views

Object literal variable is undefined inside statement that creates the object

I'm playing around with Knockout JS, and in this code sample: var data = { allMakes: ko.observableArray([ { name: "Toyota" }, { name: "Fiat"} ]), allModels: ...
-7
votes
2answers
46 views

getting the “missing ] error” [closed]

I'm having trouble figuring out how I'm getting this error. Here is my code: <script> Modernizr.load([ "features.js", { test: ...
0
votes
1answer
47 views

Plugin in object literal syntax has problems with $

I have a plugin written in object literal syntax, so it's a basically just a large object variable. Its in an external JS file. When I initialize that function inline in my html within in a ...
0
votes
1answer
43 views

Cant figure out how to setup object literal JS Organization

I just read this tutorial: http://rmurphey.com/blog/2009/10/15/using-objects-to-organize-your-code/ Im trying to setup a function in object literal format (to be common and reusable). But I cant seem ...
0
votes
1answer
155 views

Turn an object to a square bracket string (not using JSON.stringify)

I have this Javascript object (that is created on-the-fly by my plugin code): { "field": { "name": "Name", "surname": "Surname" }, "address": { "street": "Street", ...
0
votes
2answers
58 views

accessing user input within the value of an object literal

These forums are amazing and the contributors I've been helped by are really talented. So I keep coming back everytime I can't solve my own problems or am not understanding a programming concept. This ...
1
vote
1answer
61 views

Stale javascript object literal date

Im trying to use a javascript object literal to format time in preporation for comparison to MySql datetime values. Heres the object. var dateTime = { d: new Date(), pad: function(number) { ...
0
votes
1answer
83 views

Accessing nested object literal object undefined?

So I'm very new at object literal pattern but really excited about this pattern and the organization it provides. What I'm trying to do is update the phone number form field on-the-fly to format as ...
0
votes
3answers
111 views

How can I pass a JS object literal name value pair to another function

Given a JS literal object like: var foo = { _stuff : { a:10, b:20, c:30, state } } and literal functions addAB: function() { add(foo._stuff[a], ...
3
votes
4answers
136 views

Iterate and search values in a object-literal having multiple levels

Here is what I want to do: I have a tree (javascript object-literal structure) with multiple levels. I have a value of a particular key of this object. I want to search for this exact key-value pair ...
-1
votes
3answers
115 views

To count the number of objects in object literal using Jquery

Code: var animals = { "elephant": { "name" : "Bingo", "age" : "4" }, ...
2
votes
7answers
80 views

Creating reuseable variables within a .on() or any object literal

Sometimes I run into situations where I'm having to create the same variables, and retrieve the exact same type of information over & over again while inside of a object literal, such as an .on() ...
5
votes
2answers
72 views

Javascript object literal. object[i].variable

I have a function where I get some JSON, and then extract the first element, based on some info in an object literal. My problem is: function foo(string){ return data[0].string; } This does not ...
0
votes
0answers
125 views

Javascript game, array and object literals

I'm working on a game for Windows 8 in HTML5 and JavaScript. I have a working version of the game that stores "roach" objects in an array. I am trying to put the game code i have into a sample from ...
2
votes
2answers
280 views

Can one set multiple properties inside an object literal to the same value?

For example, can I do this?: { a: b: c: d: 1, e: 2, geh: function() { alert("Hi!") } } EDIT: Is there some way I can avoid doing this?: { a: 1, b: 1, c: 1, d: 1, e: 2, ...
4
votes
1answer
62 views

weird behavior in Chrome console

Take a look at the screenshot... The reason why I'm experimenting with this is because I did a simple Google search for how to check if a parameter is a function, and I found this... var getClass ...
2
votes
2answers
201 views

Make Closure Compiler merge several object property declarations as one big literal

I split my code into several files, and then run a script to merge and compile them (with ADVANCED_OPTIMIZATIONS). A big part of the functionality is implemented in a single object's prototype. So ...
2
votes
2answers
109 views

A good practice for protecting object literals and keeping them from being overwritten [closed]

I've been doing some research on object literals and such. I am creating a game that has various properties from my player. These prorpeties are stored in multiple groups, such as his ship and all ...
1
vote
1answer
38 views

Javascript performance of accessing object's fields if object was prototyped and if it was created from a literal

I can create object using prototype, and the fields are set in the constructor, or I can create object using JSON. I'd expect that the prototyped version will be as fast as the literal, or faster, but ...
1
vote
3answers
40 views

javascript: is there any advantage or difference in specifying properties names as text when using literal objects?

all right, it's far easier showing some code... Is there any performance or any other kind of difference between this javascript code var obj = { 'id': 0, 'name': 'new obj' }; and var obj = ...
0
votes
1answer
159 views

google closure compiler, PRETTY_PRINT and object literal

I have a file.js file with a variable whose value is an (nested) object literal. Something like var ojb = { foo: { bar: 'baz' }, quux: [ { /* stuff */ }, { /* ...
1
vote
5answers
97 views

How to achieve this multidimensional array in the most efficient way?

I want to make this array using JavaScript: ----------------------------------------------- | | male | | |-----------------------| ...
0
votes
2answers
48 views

Methods and sub-methods in JS object literals

So if I declare an object in Javascript like so: var myhouse = { room: { bed: function() { return "sleep"; } } } I can call: myhouse.room.bed(); Can I make a method that's ...
3
votes
1answer
778 views

How do I properly run the VJET development tools for NodeJS on Eclipse?

The default javascript editor for Eclipse has very poor outlining and code completion. As a result of this, for any modern javascript application like ExtJS or NodeJS where you need to write a lot of ...
4
votes
2answers
261 views

JavaScript - passing an object literal as second arg to Object.create()

Referring to the JavaScript code snippet below, questions: Why does the object literal {item: {value: "foobar"}} behave differently when assigned to a variable (like in line 1) vs. when passed as an ...
0
votes
1answer
136 views

Javascript object literal, how to use 'this' to reference a variable in the object [duplicate]

Possible Duplicate: “this” inside object I'm trying to make an object literal for a couple of default options for a jQuery plugin that I'm working on: var defaults = { ...
1
vote
1answer
38 views

Is there a shortcut way that I can set up fields of an object with javascript or jQuery?

I have the following code: obj = new Object(); obj.close = close; obj.$form = $form; obj.action = $form.attr('data-action') obj.entity = $form.attr('data-entity') obj.href = $form.attr('data-href'); ...
0
votes
1answer
104 views

JQuery string to object

The JQuery validator plugin uses the "name" and I would like to find it dynamically by ID. My $test variable returns a string with the correct name but then I can't use a string. How can I use this ...
0
votes
3answers
91 views

Achieve inheritance using object literal in JavaScript

How do i achieve this : function Vehicle(){ this.mobility = true; }; function Car(){}; Car.prototype = new Vehicle(); var myCar = new Car(); console.log(myCar.mobility); Using objects created ...
1
vote
1answer
240 views

Javascript binding using call with setInterval

How can I use "call" with "setInterval" to get an object literal to invoke one of its own methods? Here's an example. This works, and I understand why it works. The timer object calls its own tick ...
-2
votes
2answers
65 views

is this valid js oop?

I am wondering if it is okay to put html dom references in js oop. Although there are many JS OOP tutorials online, I haven't seen anything similar to what I am referring to. The code below is what ...
0
votes
1answer
53 views

Error using object constructor to manage cssClasses

I wrote a object to manage css Class selectors using javascript. using literal object is working but not using another OOP way. Object Literal var className = { getList : ...
0
votes
0answers
72 views

JavaScript: Why do I keep getting this error with a literal object custom method?

ctx is predefined along with other canvas properties. I didn't want to bombard the page with a huge chunk of code. I'm building an array of literal objects and they have one method. When I try to ...
3
votes
3answers
561 views

How to extend object-literal objects for events in NodeJS?

I am trying to have my Node.js object cast events. Now this is not a problem if I make 'static' objects and instantiate them, but how do I do this when my object has no static grandpa, like when an ...
0
votes
6answers
233 views

How do I slice an array from an array of object literals?

I have this array, in which each index contains an object literal. All of the object literals have the same properties. Some of the object literals have the same value for a given property, and I want ...
-1
votes
1answer
195 views

How far can an object literal be nested? [closed]

I have found that it is possible to nest another property within an object literal property. Here is an example of this: var rectangle = { upperLeft : { x : 2, y : 2 }, lowerRight : { x : 4, ...
0
votes
2answers
736 views

“SyntaxError: Unexpected token :” when inputting { “a”: “”, “b”: “” } json in console

I'm getting errors, in both chrome and firefox developer tools, when trying to evaluate the following: { "a": "", "b": "" } jsonlint.com tells me it's valid. Putting this code in an actual ...
2
votes
1answer
72 views

Different ways of specifying properties inside object literals in javascript

I have seen the following two ways of specifying properties for an object literal in javascript.. var a = {prop:2} and var a ={'prop':2} What is the difference between these two ways..I know ...

1 2 3 4