All Questions
2,401 questions
0
votes
0
answers
27
views
Storing an object key/value in an array but not in an array element [duplicate]
I found some odd things and am looking for explanations as to how and why
let a = [] ;
a.push({foo:"bar",bar:"foo"}] ;
console.log(a) ;
As expected, prints out:
[[object Object] {
...
0
votes
1
answer
37
views
Intantiating a Javascript extended class from Array with only one element
I am implementing an extended class from Array with numerical methods such as sum, mean, std, etc.
There is no problem to instantiate an object with zero or 2+ elements, but I can't implement one-...
-5
votes
1
answer
101
views
Javascript cannot map object with repetative values
I need to style specific elements by id using given object.
Keys and values in projectSkillsMap object corresponds to ids in html file. When user clicks on element with id listed in object keys ...
0
votes
0
answers
82
views
Why does the GeoJSON format expect coordinates in an array rather than an object with keys?
Take the following example from their home page:
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]...
3
votes
3
answers
74
views
Convert key value object to array of objects
I have object key value in below format.
{
"Code1": {
"char10": "ch1",
"number1": "1",
"text1": "txt1"
...
1
vote
0
answers
33
views
How to retain scrollbar position even after reloading using javascript
After clicking on any lower check box in the grid the vertical scrollbar position changed to top level in the grid. How to keep the vertical scrollbar in same position after reloading the grid.?
after ...
-1
votes
2
answers
78
views
Add up JSON strings to one variable | JavaScript [duplicate]
I have been trying to figure out how to merge several JSON strings into one.
My method is this:
if (observations[31]) { // Ignore this.
document.getElementById("ajaxrainmo").textContent = ...
0
votes
2
answers
61
views
merge javascript objects in array
I'm trying to merge an array of object by removing the ones which have the same code attribute and computing its times attribute.
given the following array:
let itemsTimes = [
{
item: {
...
-1
votes
2
answers
74
views
Compare two array of objects and push or pop objects from first array based on second array
consider below 2 array of objects, say arr1 and arr2.
based on id, if any new item exist in arr2 copy item to arr1 and remove item from arr1 if that item not present in arr2.
Tried something like this,...
0
votes
0
answers
25
views
Prototype is showing multiple times [duplicate]
I have implemented inheritance as below:
class Animal {
constructor(name) {
this.name = name;
}
speak() {
console.log(${this.name} is making noise.)...
1
vote
2
answers
145
views
Destructuring an array of variables from an unknown object [closed]
I just have a question if it is possible to destructure an object using an array of variables. I know it is possible if you know the name of the Object Keys but if you do not know the keys of the ...
0
votes
1
answer
61
views
Inserting Javascript array elements into another array with ternary operator
I have an array of objects where each object defines a field in a React form. I want to display different sequence of fields depending on a boolean state. This means that I need to insert either one ...
0
votes
2
answers
98
views
How can I generate a new name for a new object and then add it to an array
I need to write a function that returns an array of objects.
The function will select the winners based on two factors: how much they paid, and their seat number. If both of these numbers are odd, the ...
1
vote
1
answer
35
views
Object array type property is undefined in different file
I am in the process of refactoring a js file in which I used the THREE.js library to draw a truck visualization based on the parameters provided in the form. The code worked, but I need to extend it ...
-1
votes
1
answer
64
views
How to use an array of objects with a key:value pair for HTML element id with classList.toggle?
I want to loop through a number of div elements by element id and use setTimeout to toggle a class. Let me illustrate:
For example take two squares and a button:
<div id="step1" class=...