0
votes
4answers
63 views
Using jQuery to compare two arrays
Hi all,
I have two arrays of JavaScript Objects that I'd like to compare to see if they are the same. The objects may not (and most likely will not) be in the same order in each a …
0
votes
1answer
18 views
Javascript HTTP Request Queue within object variable - initialization doesn’t work
Hi folks,
I got the following Request Queue implementation from this blog:
http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/
and want to wrap it …
0
votes
3answers
49 views
javascript object arrays
I need to migrate a code in java to javascript.
In java, I am maintaining a hashmap with key = string and value = arraylist of objects
I need to implement the same in javascript:
…
1
vote
6answers
108 views
Why is the output this? (Java)
This is an instance method from a Rectangle class where we modify the x and y coordinates of the rectangle and its width and height
public void modify(int newX, int y, int width, …
0
votes
2answers
48 views
A Method that returns true if the Temperature objects represents a temp below freezing point (JAVA)
I'm trying to write a method named isLowerThanFreezing that returns true if the Temperature object represents a temperature below the freezing point for water (32.0 F, 0.0 C, or 27 …
0
votes
2answers
44 views
javascript object arrays
Can we create a class with getters and setters and an array of objects of this class using javascript?
0
votes
3answers
31 views
is there any api provided by dot net platform to convert a string or bytres array into user defined object?
Suppose i have input array
byte A[50];
i have put three diffrent data types values in array
as below
string of length 42 bytes(converted into binary)
long with length 4 bytes(co …
0
votes
1answer
33 views
Delete a key from an associative array
Consider var person=JSON.parse('{"name":"Alice","id",1234}').
How do I remove a key from the variable person? For example, how do I remove "name" completely, so that person becoem …
0
votes
2answers
76 views
Add JavaScript object to JavaScript object
Hi all,
I'd like to have JavaScript objects within another JavaScript object as such:
Issues:
- {"ID" : "1", "Name" : "Missing Documentation", "Notes" : "Issue1 Notes"}
- {" …
2
votes
4answers
70 views
hash[’key’] to hash.key in Ruby
I have a a hash
foo = {'bar'=>'baz'}
I would like to call foo.bar #=> 'baz'
My motivation is rewriting an activerecord query into a raw sql query (using Model#find_by_sql …
0
votes
5answers
35 views
How to instantiate a certain number of objects determined at runtime?
So here's my problem...
Let's say I have a simple "Person" class just with "FirstName" and "LastName" attributes.
I want to have a form where the user says how many "Persons" he …
0
votes
3answers
99 views
jquery object inside an object literal
i am trying not to repeat the selector and get to its children via a the same objects parentElment declared variable.
I tried:
testimonialsBelt={
parentElment:$(".testimonialsCn …
3
votes
4answers
79 views
Using classes with the Arduino
I'm trying to use class objects with the Arduino but keep running into problems. All I want to do is declare a class and create an object of that class. Can anyone give me an exam …
0
votes
2answers
29 views
PHP equivalent of ASP.NET Application/Cache objects
My Google-fu hasn't revealed what I'm looking for, so I'm putting this one out to the crowd.
Coming from an ASP.NET development background, I'm used to having the Application and …
0
votes
1answer
39 views
Netbeans 6.7.1 Bug,Feature or Correct Php Syntax
Hello
I develop My Php Apps with Netbeans.
If i acces a object like this $this->db->
and hit the space key it just shows me "No suggestions".
But if i acces the same object like t …
