みんなのIoT/みんなのPythonの著者。二子玉近く160平米の庭付き一戸建てに嫁/息子/娘/わんこと暮らしてます。月間1000万PV/150万UUのWebサービス運営中。 免責事項 プライバシーポリシー JavaScriptでPython風にクラスを定義できるClassyというのを発見した。 まず「<script type="text/javascript" src="classy.js"></script>」しておいて var Animal = Class.$extend({ __init__ : function(name, age) { this.name = name; this.age = age; this.health = 100; }, die : function() { this.health = 0; }, eat : function(what) { this.