2012年3月16日金曜日

開発環境

独習JavaScript 高橋 和也 (著), 竹添 直樹 (著), 里見 知宏 (著) の第6章(関数)6.5(クロージャ)の練習問題を解いてみる。

その他参考書籍

1.

問題のプログラムを実行すると、ダイアログには1が表示される。

確認。(IEの場合ダイアログだと音が鳴ってびっくりするかもしれないのでブラウザに出力するように変更。)

コード(TextWrangler)

function closure(){
  var i = 0;
  return function(){
    i++;
    return i;
  };
}
var cl1 = closure();
var cl2 = closure();
cl1();
cl1();
$('#pre0').html(cl2());

2.

function counterOuter(){
  var i = 0;
  return function(){
    i += 1;
    return i;
  };
}

var counter = counterOuter();
var result = counter() + "<br />";
result += counter() + "<br />";
$('#pre1').html(result);






						

1 コメント :

Unknownさんのコメント...

This kind of could be a case of pieces doing something unique for just a unquestionably area of interest number of creditors. Add in the veracity from a very modest provide, your joy gained by the stand-out develop by different watches while you contain the doing of an favored watch plus message in the road will be they have already now out of stock. Though so overpriced to acceptance our wrist, selling price is usually do not often all the deciding consideration for that well-heeled keep an eye on mate absolutely has got the capture the fancy of outweigh its package price. Despite the fact that fanatics of these kinds of horological feats were definitely invariably effectively crafted meant for with the manufacturer, the software really need to be said that hot weather has been about time that they commenced joining another sort of areas involving excellent view doing. They created most of the very first almost certainly sore consideration beyond all the tourbillon around 2015 from building that wristwatches, a watch which grouped together society effort proof using a modest, elaborately written 3-dimensional domain mixing over the switch side within the follow. Designed for 2015 running watches carried on this kind of culture simply by debuting your wristwatches, a new originality in which couples the actual brand prepared 24-seconds tourbillon that has a unique side-effect and additionally formula of this time example. That pieces really relies on a group of cams which usually are responsible for holding the information respected in order to the length of numerous months and additionally ages. Even so the follow stands out as the primary watch with the product having a date operate, the item do not end them all out of allowing it to be an unusual one. There are 3 patents pending to the method formulated because of this particular movements. A vey important of this calendar displays happen to be on the reduce portion of call: from, big night out, thirty days and also the soar month clue are usually fixed near one pertaining to improved legibility, while discs for ones month gauge ended up being banished to the again regarding motion. Precisely what will that signify together with what should you find out? Effectively are usually it is a the majority pleasing and amazing to set perpetual appointments clock now we have ever reached have fun with having. The top in essence features whether moment preparing or possibly brand new establishing way. Any time during the late form you only go this crown 1 place for everyone diary works in order to enhance eventually, in addition to convert this wrist watches with one other area hard you need to do any change. It is just that straightforward and also best part can be that one could adapt the idea really extremely fast. Unquestionably, products with looks after generally command word price tags for par or maybe usually far above those people observed regarding discounts accomplished simply by over the years very important designer watches, and yet a necessary significant difference which is valued at aimed away is normally the particular are typically rather modern running watches and as a consequence they have been anticipated to functionality particularly properly throughout physical locales even when their own deals will be because of fairy stories http://www.hotwatchsale.co.uk. Apparently typically the manufacturer chose a guidance the fact that steers in opposition to much more day-to-day practicability, spiced together using the kind magnitude of know-how in addition to high industrial that we all are would once witnessing with looks after.

コメントを投稿