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

Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.

I'm planning on buying a laser printer but concerned about the life cycle of toner in the machine

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Either or Neither in sentence with another negative

How to draw a waving flag in TikZ

How to find program name(s) of an installed package?

Adding span tags within wp_list_pages list items

Today is the Center

Why is this basic language not a regular language?

How can I make a cone from a cube and view the cube with different angles?

Is it possible to do 50 km distance without any previous training?

How to add double frame in tcolorbox?

Why do I get two different answers for this counting problem?

Is it important to consider tone, melody, and musical form while writing a song?

Mathematical cryptic clues

Pattern match does not work in bash script

Is a conference paper whose proceedings will be published in IEEE Xplore counted as a publication?

TGV timetables / schedules?

Why is Minecraft giving an OpenGL error?

In Japanese, what’s the difference between “Tonari ni” (となりに) and “Tsugi” (つぎ)? When would you use one over the other?

Why are electrically insulating heatsinks so rare? Is it just cost?

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

What does it mean to describe someone as a butt steak?

Why doesn't H₄O²⁺ exist?



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






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








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
    Mar 27 at 9:31

















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
    Mar 27 at 9:31













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 Mar 27 at 22:08









Boann

37.4k1290122




37.4k1290122










asked Mar 27 at 9:24









SenthilSenthil

615




615












  • where did you iterate it?

    – M.Hemant
    Mar 27 at 9:31

















  • where did you iterate it?

    – M.Hemant
    Mar 27 at 9:31
















where did you iterate it?

– M.Hemant
Mar 27 at 9:31





where did you iterate it?

– M.Hemant
Mar 27 at 9:31












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
    Mar 27 at 9:38











  • Still doesnot match expected output.

    – Maheer Ali
    Mar 27 at 9:51











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

    – Maheer Ali
    Mar 27 at 9:57











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

    – R3tep
    Mar 27 at 10:04











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

    – Maheer Ali
    Mar 27 at 10:06



















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
        Mar 27 at 9:38











      • Still doesnot match expected output.

        – Maheer Ali
        Mar 27 at 9:51











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

        – Maheer Ali
        Mar 27 at 9:57











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

        – R3tep
        Mar 27 at 10:04











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

        – Maheer Ali
        Mar 27 at 10:06
















      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
        Mar 27 at 9:38











      • Still doesnot match expected output.

        – Maheer Ali
        Mar 27 at 9:51











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

        – Maheer Ali
        Mar 27 at 9:57











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

        – R3tep
        Mar 27 at 10:04











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

        – Maheer Ali
        Mar 27 at 10:06














      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 Mar 27 at 9:59

























      answered Mar 27 at 9:34









      R3tepR3tep

      8,18382962




      8,18382962







      • 3





        doesnot match the expected output..

        – Maheer Ali
        Mar 27 at 9:38











      • Still doesnot match expected output.

        – Maheer Ali
        Mar 27 at 9:51











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

        – Maheer Ali
        Mar 27 at 9:57











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

        – R3tep
        Mar 27 at 10:04











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

        – Maheer Ali
        Mar 27 at 10:06













      • 3





        doesnot match the expected output..

        – Maheer Ali
        Mar 27 at 9:38











      • Still doesnot match expected output.

        – Maheer Ali
        Mar 27 at 9:51











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

        – Maheer Ali
        Mar 27 at 9:57











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

        – R3tep
        Mar 27 at 10:04











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

        – Maheer Ali
        Mar 27 at 10:06








      3




      3





      doesnot match the expected output..

      – Maheer Ali
      Mar 27 at 9:38





      doesnot match the expected output..

      – Maheer Ali
      Mar 27 at 9:38













      Still doesnot match expected output.

      – Maheer Ali
      Mar 27 at 9:51





      Still doesnot match expected output.

      – Maheer Ali
      Mar 27 at 9:51













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

      – Maheer Ali
      Mar 27 at 9:57





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

      – Maheer Ali
      Mar 27 at 9:57













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

      – R3tep
      Mar 27 at 10:04





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

      – R3tep
      Mar 27 at 10:04













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

      – Maheer Ali
      Mar 27 at 10:06






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

      – Maheer Ali
      Mar 27 at 10:06














      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 Mar 27 at 11:13

























          answered Mar 27 at 9:34









          Zakaria AcharkiZakaria Acharki

          56.9k134471




          56.9k134471





















              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 Mar 27 at 9:54

























                  answered Mar 27 at 9:49









                  Francis LeighFrancis Leigh

                  956313




                  956313



























                      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







                      -arrays, javascript, jquery, object

                      Popular posts from this blog

                      Word for a person who has no opinion about whether god existsWord for having a definite opinion while simultaneously withholding judgment?What's the opposite of “newcomer? Is ”veteran" OK?What do you call an “atheist” who might believe in an afterlife?What's a word for someone who wants to voice opinions but not have them challenged?Word for someone who dismisses contrary opinions as irrational?Somone who thinks they are overly special/out of the ordinaryIs there a word, phrase or idiom for “a person who is incapable of thinking about the future”?The belief that a god is human-likeA word for a non-famous person/thing you have heard a lot aboutAdjective for a person who enjoys taking care of their appearance

                      What was this official D&D 3.5e Lovecraft-flavored rulebook?What was this set of RPG tools called?As a first-time DM should I let my players play complex character classes and roles?Nymph's Kiss and the RelationshipWhat was the name of this Cleric Prestige Class that shapes metal with its bare hands?Are the 3.5e Dragonlance books third party or official works?What's up with the domain Vile Darkness?What was this 80s book about RPGs?What was the name of this Werewolf band?What book had Rituals to “upgrade” animal companions to keep them viable at higher levels?What was this RPG that had rules for player-owned businesses?

                      2017 IndyCar Series Contents Series news Teams and drivers Schedule Season summary Footnotes References External links Navigation menu"INDYCAR: Initial 2018 bodywork concepts unveiled"the original"IndyCar confirms switch to Performance Friction brakes in 2017""AJ Foyt Racing will switch to Chevy"the original"Carlos Munoz, Conor Daly will drive for AJ Foyt Racing""Zach Veach's Indy 500 Debut Confirmed with Foyt""No mass exodus from Honda after Ganassi switch""Ex-F1 driver Sato joins Andretti Autosport for 2017 IndyCar season""IndyCar's Ryan Hunter-Reay, sponsor DHL paired through 2020""hhgregg and Andretti Autosport announce partnership for key races in 2016""INDYCAR: Rossi re-signs with Andretti"the original"McLaren Formula 1 - Fernando Alonso to race at Indy 500 with McLaren, Honda and Andretti Autosport""Shank will finally take part in Indy 500 with Harvey, Andretti | MotorSportsTalk""Andretti adds Jack Harvey to Indy 500 field""Ganassi switches to Honda power for 2017""INDYCAR: Chilton returns to Ganassi"the original"IndyCar silly season: Who's going where in 2017?""INDYCAR: Kanaan, NTT Data return to Ganassi"the original"Kimball to remain at Ganassi for 2017""Coyne confirms Bourdais for 2017 IndyCar season""Davison to sub for Bourdais in Indy 500"the original"Gutierrez confirmed for Detroit IndyCar debut""Gutierrez returns with Coyne for rest of 2017 season""Vautier to drive for Coyne at Texas"the original"INDYCAR: Coyne confirms Jones for 2017"the original"Pippa Mann returns to Coyne for Indy 500""Karam, Dreyer & Reinbold teaming up again for Indianapolis 500""Pigot to return to Ed Carpenter Racing""Hildebrand confirmed as full-time Ed Carpenter driver""Veach to replace injured Hildebrand at Barber"the originalNew Team Harding Racing Enters Chaves for 101st Indianapolis 500"Juncos Racing Announces Entry in 101st Running of the Indianapolis 500 :: Juncos Racing""Juncos confirms Pigot for Indy 500""Saavedra confirmed in Juncos' second 500 entry"the original"Lazier confirms Indy 500 run after son's USF2000 debut"the original"Claman DeMelo to race for RLLR at Sonoma"the original"Rahal signs Servia and ace engineer for 2017""IndyCar: Aleshin returns with Schmidt"the original"Aleshin replaced by Saavedra for Toronto""Jack Harvey will pilot SPM No. 7 car at Watkins Glen, Sonoma""Jay Howard confirmed in Tony Stewart's supported SPM Indy entry""INDYCAR: Newgarden to wave the flag at Penske"the original"Pagenaud opts for No. 1 in 2017"the original"Penske confirms Newgarden for 2017""Montoya to stay with Team Penske in 2017""Target leaving IndyCar after 27 seasons with Chip Ganassi""Cavin: IndyCar could see complete driver/team shakeup in 2017""End of the road for KV Racing?""KV Racing confirms closure, equipment sold to Juncos""Juncos confirms IndyCar Series entry"the original"Juncos readies IndyCar program, aims for '17 500"the original"Harding Racing to add Texas, Pocono to schedule"the original"Sato signs with Andretti Autosport for 2017""INDYCAR: Aleshin in Doubt at SPM"the original"Long Beach notebook: JR Hildebrand breaks hand""Hildebrand cleared to return at Phoenix"the original"Bourdais to undergo surgery on multiple fractures""Aleshin loses Schmidt Peterson IndyCar ride""Saavedra in at SPM for Pocono, Gateway"the original"Bourdais to make return at Gateway"the original"The IndyCar Grand Prix no longer is sponsored by Angie's List""2017 IndyCar Series rulebook""2017 Verizon IndyCar Series Official Rulebook"Official websiteeeeee