旅館で見つけて、帰って通販で探そうと思ったが、なかなか見つからず。。。
2025年10月 日 月 火 水 木 金 土 « 2月 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 アーカイブ
-
最近の投稿
タグ
カテゴリー
function Rectangle(w,h){
this.width = w;
this.height= h;
}
Rectangle.prototype.area = funnction(){
return this.width * this.height;
}
var r = new Rectangle(2, 3);
r.hasOwnProperty("width"); //true
r.hasOwnProperty("area"); //false
"area" in r; //true
はまったこと。メモ。
OK
addEventListener("load",abc,false);
function abc(){
window.alert("abc");
}
NG
addEventListener("load",abc,false);
var abc = function(){
window.alert("abc");
}
OK
var abc = function(){
window.alert("abc");
}
addEventListener("load",abc,false);
iPadのアプリで書いてみる。
