Is it better coding practice to define variables outside a foreach even though more verbose?

前端 未结 12 2201
栀梦
栀梦 2020-12-10 10:39

In the following examples:

  • the first seems more verbose but less wasteful of resources
  • the second is less verbose bu
12条回答
  •  無奈伤痛
    2020-12-10 11:20

    I've found that 'hoisting' declarations out of loops is typically a better long-term strategy for maintenance. The compiler will usually sort things out acceptably for performance.

提交回复
热议问题