{"id":158,"date":"2013-03-18T20:24:07","date_gmt":"2013-03-18T20:24:07","guid":{"rendered":"http:\/\/www.webninjataylor.com\/library\/?p=158"},"modified":"2015-10-25T14:34:25","modified_gmt":"2015-10-25T18:34:25","slug":"javascript-ifelse-shorthand","status":"publish","type":"post","link":"https:\/\/webninjataylor.com\/library\/javascript-ifelse-shorthand\/","title":{"rendered":"JavaScript If\/Else Shorthand"},"content":{"rendered":"<p>Writing this&#8230;<\/p>\n<pre>if (index === 2) {\r\n    return null\r\n} else {\r\n    return value;\r\n}<\/pre>\n<p>Is the same as saying\u2026<\/p>\n<pre>\/\/return [test condition] ? [return this if true] : [return this if false]\r\nreturn index === 2 ? null : value;\r\n\r\nOR\r\n\r\nvar myVariable = condition ? this_if_true : that_if_false;\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Writing this&#8230; if (index === 2) { return null } else { return value; } Is the same as saying\u2026 \/\/return [test condition] ? [return this if true] : [return this if false] return index === 2 ? null : value; OR var myVariable = condition ? this_if_true : that_if_false;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[144],"tags":[9],"class_list":["post-158","post","type-post","status-publish","format-standard","hentry","category-web-shots","tag-javascript"],"_links":{"self":[{"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/posts\/158","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/comments?post=158"}],"version-history":[{"count":6,"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/posts\/158\/revisions"}],"predecessor-version":[{"id":4013,"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/posts\/158\/revisions\/4013"}],"wp:attachment":[{"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/media?parent=158"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/categories?post=158"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webninjataylor.com\/library\/wp-json\/wp\/v2\/tags?post=158"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}