How do I get all objects in a nested array after performing a calculation in JavaScript? The Next CEO of Stack OverflowHow 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 it my responsibility to learn a new technology in my own time my employer wants to implement?

Can I equip Skullclamp on a creature I am sacrificing?

What is the point of a new vote on May's deal when the indicative votes suggest she will not win?

How to make a software documentation "officially" citable?

How to use tikz in fbox?

How do I solve this limit?

Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables

Why here is plural "We went to the movies last night."

How do scammers retract money, while you can’t?

% symbol leads to superlong (forever?) compilations

India just shot down a satellite from the ground. At what altitude range is the resulting debris field?

Anatomically Correct Strange Women In Ponds Distributing Swords

Shade part of a Venn diagram

Return the Closest Prime Number

What happens if you roll doubles 3 times then land on "Go to jail?"

How can I quit an app using Terminal?

How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?

What does this shorthand mean?

If the heap is initialized for security, then why is the stack uninitialized?

Why do professional authors make "consistency" mistakes? And how to avoid them?

Whats the best way to handle refactoring a big file?

How do spells that require an ability check vs. the caster's spell save DC work?

How did people program for Consoles with multiple CPUs?

Is it okay to store user locations?



How do I get all objects in a nested array after performing a calculation in JavaScript?



The Next CEO of Stack OverflowHow 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










6















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"

]









share|improve this question
























  • where did you iterate it?

    – M.Hemant
    yesterday















6















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"

]









share|improve this question
























  • where did you iterate it?

    – M.Hemant
    yesterday













6












6








6








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"

]









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









Boann

37.4k1290121




37.4k1290121










asked yesterday









SenthilSenthil

443




443












  • where did you iterate it?

    – M.Hemant
    yesterday

















  • where did you iterate it?

    – M.Hemant
    yesterday
















where did you iterate it?

– M.Hemant
yesterday





where did you iterate it?

– M.Hemant
yesterday












3 Answers
3






active

oldest

votes


















3














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)








share|improve this answer




















  • 3





    doesnot match the expected output..

    – Maheer Ali
    yesterday











  • Still doesnot match expected output.

    – Maheer Ali
    yesterday











  • From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

    – Maheer Ali
    yesterday











  • @MaheerAli Come from the OP example code. And thanks for "4,000"

    – R3tep
    yesterday











  • I mistyped sourceamount there was send property in old code. But now its fine so +1

    – Maheer Ali
    yesterday



















7














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));








share|improve this answer
































    3

















    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)








    share|improve this answer

























      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
      );



      );













      draft saved

      draft discarded


















      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









      3














      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)








      share|improve this answer




















      • 3





        doesnot match the expected output..

        – Maheer Ali
        yesterday











      • Still doesnot match expected output.

        – Maheer Ali
        yesterday











      • From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

        – Maheer Ali
        yesterday











      • @MaheerAli Come from the OP example code. And thanks for "4,000"

        – R3tep
        yesterday











      • I mistyped sourceamount there was send property in old code. But now its fine so +1

        – Maheer Ali
        yesterday
















      3














      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)








      share|improve this answer




















      • 3





        doesnot match the expected output..

        – Maheer Ali
        yesterday











      • Still doesnot match expected output.

        – Maheer Ali
        yesterday











      • From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

        – Maheer Ali
        yesterday











      • @MaheerAli Come from the OP example code. And thanks for "4,000"

        – R3tep
        yesterday











      • I mistyped sourceamount there was send property in old code. But now its fine so +1

        – Maheer Ali
        yesterday














      3












      3








      3







      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)








      share|improve this answer















      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)






      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited yesterday

























      answered yesterday









      R3tepR3tep

      8,13882962




      8,13882962







      • 3





        doesnot match the expected output..

        – Maheer Ali
        yesterday











      • Still doesnot match expected output.

        – Maheer Ali
        yesterday











      • From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

        – Maheer Ali
        yesterday











      • @MaheerAli Come from the OP example code. And thanks for "4,000"

        – R3tep
        yesterday











      • I mistyped sourceamount there was send property in old code. But now its fine so +1

        – Maheer Ali
        yesterday













      • 3





        doesnot match the expected output..

        – Maheer Ali
        yesterday











      • Still doesnot match expected output.

        – Maheer Ali
        yesterday











      • From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

        – Maheer Ali
        yesterday











      • @MaheerAli Come from the OP example code. And thanks for "4,000"

        – R3tep
        yesterday











      • I mistyped sourceamount there was send property in old code. But now its fine so +1

        – Maheer Ali
        yesterday








      3




      3





      doesnot match the expected output..

      – Maheer Ali
      yesterday





      doesnot match the expected output..

      – Maheer Ali
      yesterday













      Still doesnot match expected output.

      – Maheer Ali
      yesterday





      Still doesnot match expected output.

      – Maheer Ali
      yesterday













      From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

      – Maheer Ali
      yesterday





      From where send property come. And sourceamount which is expected output and 4000 should be "4,000"

      – Maheer Ali
      yesterday













      @MaheerAli Come from the OP example code. And thanks for "4,000"

      – R3tep
      yesterday





      @MaheerAli Come from the OP example code. And thanks for "4,000"

      – R3tep
      yesterday













      I mistyped sourceamount there was send property in old code. But now its fine so +1

      – Maheer Ali
      yesterday






      I mistyped sourceamount there was send property in old code. But now its fine so +1

      – Maheer Ali
      yesterday














      7














      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));








      share|improve this answer





























        7














        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));








        share|improve this answer



























          7












          7








          7







          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));








          share|improve this answer















          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));






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited yesterday

























          answered yesterday









          Zakaria AcharkiZakaria Acharki

          56.4k134471




          56.4k134471





















              3

















              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)








              share|improve this answer





























                3

















                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)








                share|improve this answer



























                  3












                  3








                  3










                  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)








                  share|improve this answer


















                  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)






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited yesterday

























                  answered yesterday









                  Francis LeighFrancis Leigh

                  901313




                  901313



























                      draft saved

                      draft discarded
















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      Triangular numbers and gcdProving sum of a set is $0 pmod n$ if $n$ is odd, or $fracn2 pmod n$ if $n$ is even?Is greatest common divisor of two numbers really their smallest linear combination?GCD, LCM RelationshipProve a set of nonnegative integers with greatest common divisor 1 and closed under addition has all but finite many nonnegative integers.all pairs of a and b in an equation containing gcdTriangular Numbers Modulo $k$ - Hit All Values?Understanding the Existence and Uniqueness of the GCDGCD and LCM with logical symbolsThe greatest common divisor of two positive integers less than 100 is equal to 3. Their least common multiple is twelve times one of the integers.Suppose that for all integers $x$, $x|a$ and $x|b$ if and only if $x|c$. Then $c = gcd(a,b)$Which is the gcd of 2 numbers which are multiplied and the result is 600000?

                      Ingelân Ynhâld Etymology | Geografy | Skiednis | Polityk en bestjoer | Ekonomy | Demografy | Kultuer | Klimaat | Sjoch ek | Keppelings om utens | Boarnen, noaten en referinsjes Navigaasjemenuwww.gov.ukOffisjele webside fan it regear fan it Feriene KeninkrykOffisjele webside fan it Britske FerkearsburoNederlânsktalige ynformaasje fan it Britske FerkearsburoOffisjele webside fan English Heritage, de organisaasje dy't him ynset foar it behâld fan it Ingelske kultuergoedYnwennertallen fan alle Britske stêden út 'e folkstelling fan 2011Notes en References, op dizze sideEngland

                      Հադիս Բովանդակություն Անվանում և նշանակություն | Դասակարգում | Աղբյուրներ | Նավարկման ցանկ