Skip to content

Instantly share code, notes, and snippets.

@itzsaga
Created June 16, 2017 04:39
Show Gist options
  • Save itzsaga/9e533c8b55a6225aed8904617278a101 to your computer and use it in GitHub Desktop.
Save itzsaga/9e533c8b55a6225aed8904617278a101 to your computer and use it in GitHub Desktop.
let itemsValues
$(() => {
$.getJSON('/items.json', function (data) {
itemsValues = $.map(data, function (e) {
return e.id
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment