Are there legitimate uses for JavaScript's “with” statement?

后端 未结 30 2146
伪装坚强ぢ
伪装坚强ぢ 2020-11-22 04:22

Alan Storm\'s comments in response to my answer regarding the with statement got me thinking. I\'ve seldom found a reason to use this particular language feature, and had ne

30条回答
  •  北荒
    北荒 (楼主)
    2020-11-22 05:27

    I think the with-statement can come in handy when converting a template language into JavaScript. For example JST in base2, but I've seen it more often.

    I agree one can program this without the with-statement. But because it doesn't give any problems it is a legitimate use.

提交回复
热议问题