Skip to content

Instantly share code, notes, and snippets.

@regepan
Created December 5, 2013 03:16
Show Gist options
  • Save regepan/7799602 to your computer and use it in GitHub Desktop.
Save regepan/7799602 to your computer and use it in GitHub Desktop.
// コンストラクタ
function Circle(radius){
// インスタンスプロパティ
this.r = radius;
}
// クラスプロパティ
Circle.PI = 3.14;
var c = new Circle(5.0);
/**
* ここから検証
*/
// コンストラクタ
console.debug(Circle.PI);// 3.14
console.debug(Circle.r);// undefined
// インスタンス
console.debug(c.PI);// undefined
console.debug(c.r);// 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment