Last active
January 30, 2020 09:38
-
-
Save aliaramli/46705ce8a61d2287ec8456833762ecf4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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