Jump to content
McKay Development

how do i push a data to an array ?


xLeeJYx

Recommended Posts

With this code below i got [ ] in console. Not sure what i done wrong

function priceCheckCard(item) {

    var cardPrices = [];

    market.getItemPrice(item.appid, item.market_hash_name, (err, data) => {
        if (err) {
            console.log(err.message)
        } else {
            cardPrices.push(data.median_price)
        }
    })
    return cardPrices
}

 

Link to comment
Share on other sites

You're pushing the data correctly, you just seem to not understand async. Calling market.getItemPrice is essentially requesting that it retrieve the item price and then let you know when it's finished. You then return immediately, without waiting for the callback.

i really cant understand a single thing about async ._. i looked through the google and youtube but still cant understand

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...