Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@soichisumi
Created June 24, 2019 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soichisumi/3294d64effd87c5c0b1cc94b01924555 to your computer and use it in GitHub Desktop.
Save soichisumi/3294d64effd87c5c0b1cc94b01924555 to your computer and use it in GitHub Desktop.
object の fieldの中身を列挙する. Objectがundefinedなパラメータがないかどうかのチェックのときに使用する
function showFields(target) {
for (var f in target) {
console.log(`${f}: ${target[f]}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment