Skip to content

Instantly share code, notes, and snippets.

@aliaramli
Last active January 30, 2020 09:38
Show Gist options
  • Save aliaramli/46705ce8a61d2287ec8456833762ecf4 to your computer and use it in GitHub Desktop.
Save aliaramli/46705ce8a61d2287ec8456833762ecf4 to your computer and use it in GitHub Desktop.
//javascript
var developers = <?php echo $parsed_array_to_json; ?>;
//access the value.
developers.forEach(logData);
function logData(value, index, array) {
console.log(value.name, value.age, value.job);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment