How do I get all objects in a nested array after performing a calculation in JavaScript?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I check if an array includes an object in JavaScript?How to insert an item into an array at a specific index (JavaScript)?How do I correctly clone a JavaScript object?How to replace all occurrences of a string in JavaScriptHow do I empty an array in JavaScript?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?Find object by id in an array of JavaScript objects
Is there a good way to store credentials outside of a password manager?
Increase performance creating Mandelbrot set in python
How to check is there any negative term in a large list?
Crossing the line between justified force and brutality
How do I rename a Linux host without needing to reboot for the rename to take effect?
How easy is it to start Magic from scratch?
System.debug(JSON.Serialize(o)) Not longer shows full string
Go Pregnant or Go Home
Inappropriate reference requests from Journal reviewers
Would a high gravity rocky planet be guaranteed to have an atmosphere?
What is the best translation for "slot" in the context of multiplayer video games?
Is this apparent Class Action settlement a spam message?
Short story about space worker geeks who zone out by 'listening' to radiation from stars
Opposite of a diet
What does "I’d sit this one out, Cap," imply or mean in the context?
How do I go from 300 unfinished/half written blog posts, to published posts?
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
Class Action - which options I have?
How do we know the LHC results are robust?
Why Were Madagascar and New Zealand Discovered So Late?
Where does the Z80 processor start executing from?
Is a stroke of luck acceptable after a series of unfavorable events?
How do scammers retract money, while you can’t?
Applicability of Single Responsibility Principle
How do I get all objects in a nested array after performing a calculation in JavaScript?
How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I check if an array includes an object in JavaScript?How to insert an item into an array at a specific index (JavaScript)?How do I correctly clone a JavaScript object?How to replace all occurrences of a string in JavaScriptHow do I empty an array in JavaScript?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?Find object by id in an array of JavaScript objects
I have two different array objects and have a function which uses the objects and performs calculations. I would like to know how to perform calculations and get all the nested array objects in JavaScript as shown below (expected output).
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
],
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
let send_amount = querydata.sourceamount.replace(/,/g,"");
let fee = objectdata.fee;
let rate = objectdata.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
let result_data = send: send_amount, fees: fee, ratevalue: rate, amountvalue :amount_to_convert, receive: receive_amount
return result_data;
result = config(obj, query);
Expected Output:
result = [
name: "insta",
fees: "2",
ratevalue: "2.00",
amountvalue: "3998",
receive: "7976"
country: "SG",
sourceamount: "4,000"
,
name: "transfer",
fees: "1",
ratevalue: "3.00",
amountvalue: "3997",
receive: "11,991"
country: "SG",
sourceamount: "4,000"
]
javascript jquery arrays object
add a comment |
I have two different array objects and have a function which uses the objects and performs calculations. I would like to know how to perform calculations and get all the nested array objects in JavaScript as shown below (expected output).
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
],
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
let send_amount = querydata.sourceamount.replace(/,/g,"");
let fee = objectdata.fee;
let rate = objectdata.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
let result_data = send: send_amount, fees: fee, ratevalue: rate, amountvalue :amount_to_convert, receive: receive_amount
return result_data;
result = config(obj, query);
Expected Output:
result = [
name: "insta",
fees: "2",
ratevalue: "2.00",
amountvalue: "3998",
receive: "7976"
country: "SG",
sourceamount: "4,000"
,
name: "transfer",
fees: "1",
ratevalue: "3.00",
amountvalue: "3997",
receive: "11,991"
country: "SG",
sourceamount: "4,000"
]
javascript jquery arrays object
where did you iterate it?
– M.Hemant
19 hours ago
add a comment |
I have two different array objects and have a function which uses the objects and performs calculations. I would like to know how to perform calculations and get all the nested array objects in JavaScript as shown below (expected output).
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
],
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
let send_amount = querydata.sourceamount.replace(/,/g,"");
let fee = objectdata.fee;
let rate = objectdata.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
let result_data = send: send_amount, fees: fee, ratevalue: rate, amountvalue :amount_to_convert, receive: receive_amount
return result_data;
result = config(obj, query);
Expected Output:
result = [
name: "insta",
fees: "2",
ratevalue: "2.00",
amountvalue: "3998",
receive: "7976"
country: "SG",
sourceamount: "4,000"
,
name: "transfer",
fees: "1",
ratevalue: "3.00",
amountvalue: "3997",
receive: "11,991"
country: "SG",
sourceamount: "4,000"
]
javascript jquery arrays object
I have two different array objects and have a function which uses the objects and performs calculations. I would like to know how to perform calculations and get all the nested array objects in JavaScript as shown below (expected output).
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
],
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
let send_amount = querydata.sourceamount.replace(/,/g,"");
let fee = objectdata.fee;
let rate = objectdata.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
let result_data = send: send_amount, fees: fee, ratevalue: rate, amountvalue :amount_to_convert, receive: receive_amount
return result_data;
result = config(obj, query);
Expected Output:
result = [
name: "insta",
fees: "2",
ratevalue: "2.00",
amountvalue: "3998",
receive: "7976"
country: "SG",
sourceamount: "4,000"
,
name: "transfer",
fees: "1",
ratevalue: "3.00",
amountvalue: "3997",
receive: "11,991"
country: "SG",
sourceamount: "4,000"
]
javascript jquery arrays object
javascript jquery arrays object
edited 6 hours ago
Boann
37.4k1290121
37.4k1290121
asked 19 hours ago
SenthilSenthil
413
413
where did you iterate it?
– M.Hemant
19 hours ago
add a comment |
where did you iterate it?
– M.Hemant
19 hours ago
where did you iterate it?
– M.Hemant
19 hours ago
where did you iterate it?
– M.Hemant
19 hours ago
add a comment |
3 Answers
3
active
oldest
votes
You can use .map to loop your array and construct all your object.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
3
doesnot match the expected output..
– Maheer Ali
19 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
From wheresend
property come. Andsourceamount
which is expected output and4000
should be"4,000"
– Maheer Ali
18 hours ago
@MaheerAli Come from the OP example code. And thanks for"4,000"
– R3tep
18 hours ago
I mistypedsourceamount
there wassend
property in old code. But now its fine so +1
– Maheer Ali
18 hours ago
add a comment |
You need to map through the obj
array and construct your output.
NOTE: You need to parse the fee-rate-sourceamount
values if you want to perform arithmetic operations.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
add a comment |
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373681%2fhow-do-i-get-all-objects-in-a-nested-array-after-performing-a-calculation-in-jav%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use .map to loop your array and construct all your object.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
3
doesnot match the expected output..
– Maheer Ali
19 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
From wheresend
property come. Andsourceamount
which is expected output and4000
should be"4,000"
– Maheer Ali
18 hours ago
@MaheerAli Come from the OP example code. And thanks for"4,000"
– R3tep
18 hours ago
I mistypedsourceamount
there wassend
property in old code. But now its fine so +1
– Maheer Ali
18 hours ago
add a comment |
You can use .map to loop your array and construct all your object.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
3
doesnot match the expected output..
– Maheer Ali
19 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
From wheresend
property come. Andsourceamount
which is expected output and4000
should be"4,000"
– Maheer Ali
18 hours ago
@MaheerAli Come from the OP example code. And thanks for"4,000"
– R3tep
18 hours ago
I mistypedsourceamount
there wassend
property in old code. But now its fine so +1
– Maheer Ali
18 hours ago
add a comment |
You can use .map to loop your array and construct all your object.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
You can use .map to loop your array and construct all your object.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
function config(objectdata, querydata)
return objectdata.map(function(obj)
let send_amount = +querydata.sourceamount.replace(/,/g, "");
let fee = +obj.fee;
let rate = +obj.rate;
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
...querydata
);
result = config(obj, query);
console.log(result)
edited 18 hours ago
answered 19 hours ago
R3tepR3tep
8,10882962
8,10882962
3
doesnot match the expected output..
– Maheer Ali
19 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
From wheresend
property come. Andsourceamount
which is expected output and4000
should be"4,000"
– Maheer Ali
18 hours ago
@MaheerAli Come from the OP example code. And thanks for"4,000"
– R3tep
18 hours ago
I mistypedsourceamount
there wassend
property in old code. But now its fine so +1
– Maheer Ali
18 hours ago
add a comment |
3
doesnot match the expected output..
– Maheer Ali
19 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
From wheresend
property come. Andsourceamount
which is expected output and4000
should be"4,000"
– Maheer Ali
18 hours ago
@MaheerAli Come from the OP example code. And thanks for"4,000"
– R3tep
18 hours ago
I mistypedsourceamount
there wassend
property in old code. But now its fine so +1
– Maheer Ali
18 hours ago
3
3
doesnot match the expected output..
– Maheer Ali
19 hours ago
doesnot match the expected output..
– Maheer Ali
19 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
Still doesnot match expected output.
– Maheer Ali
18 hours ago
From where
send
property come. And sourceamount
which is expected output and 4000
should be "4,000"
– Maheer Ali
18 hours ago
From where
send
property come. And sourceamount
which is expected output and 4000
should be "4,000"
– Maheer Ali
18 hours ago
@MaheerAli Come from the OP example code. And thanks for
"4,000"
– R3tep
18 hours ago
@MaheerAli Come from the OP example code. And thanks for
"4,000"
– R3tep
18 hours ago
I mistyped
sourceamount
there was send
property in old code. But now its fine so +1– Maheer Ali
18 hours ago
I mistyped
sourceamount
there was send
property in old code. But now its fine so +1– Maheer Ali
18 hours ago
add a comment |
You need to map through the obj
array and construct your output.
NOTE: You need to parse the fee-rate-sourceamount
values if you want to perform arithmetic operations.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
add a comment |
You need to map through the obj
array and construct your output.
NOTE: You need to parse the fee-rate-sourceamount
values if you want to perform arithmetic operations.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
add a comment |
You need to map through the obj
array and construct your output.
NOTE: You need to parse the fee-rate-sourceamount
values if you want to perform arithmetic operations.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
You need to map through the obj
array and construct your output.
NOTE: You need to parse the fee-rate-sourceamount
values if you want to perform arithmetic operations.
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
var obj = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
];
var query =
country: "SG",
sourceamount: "4,000"
;
function config(objectdata, querydata)
let result_data = objectdata.map(function(obj)
let send_amount = parseInt(querydata.sourceamount.replace(/,/g, ""));
let fee = parseInt(obj.fee);
let rate = parseInt(obj.rate);
let amount_to_convert = send_amount - fee;
let receive_amount = amount_to_convert * rate;
return
name: obj.name,
fees: fee,
ratevalue: rate,
amountvalue: amount_to_convert,
receive: receive_amount,
country: querydata.country,
sourceamount: send_amount,
);
return result_data;
console.log(config(obj, query));
edited 17 hours ago
answered 19 hours ago
Zakaria AcharkiZakaria Acharki
56.4k134471
56.4k134471
add a comment |
add a comment |
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
add a comment |
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
add a comment |
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
const array = [
name: "insta",
fee: "2",
rate: "2.00"
,
name: "transfer",
fee: "1",
rate: "3.00"
]
const query = country: "SG", sourceamount: "4,000"
function config (data, querydata)
const send_amount = querydata.sourceamount.replace(/,/g,"")
return data.map(( fee, rate, ...rest ) => (
fees: fee,
ratevalue: rate,
amountvalue: +send_amount - +fee,
receive: (+send_amount - +fee) * +rate,
...rest,
...querydata
))
result = config(array, query)
console.log(result)
edited 18 hours ago
answered 18 hours ago
Francis LeighFrancis Leigh
821313
821313
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373681%2fhow-do-i-get-all-objects-in-a-nested-array-after-performing-a-calculation-in-jav%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
where did you iterate it?
– M.Hemant
19 hours ago