学習バンザイITエンジニアの精神安穏日記

ITエンジニアというより、IT系雑務者

JavaScriptでrubyのreturn ifっぽく

ruby

return "hello" if true

JS

if(true) return "hello"