Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6844595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:23:51+00:00 2026-05-27T00:23:51+00:00

Is the second better than the first? FIRST: var count:int=myArray.length; for(var i:uint=0;i<count;i++) { var

  • 0

Is the second better than the first?

FIRST:

var count:int=myArray.length;
for(var i:uint=0;i<count;i++)
{
   var str:String=myArray[i].label;
   var somethingElse:Class=...;
   var andAnotherThing:MyInstance=new MyInstance(somethingElse);
   ...
}

SECOND:

var count:int=myArray.length;
var str:String;
var somethingElse:Class;
var andAnotherThing:MyInstance;
for(var i:uint=0;i<count;i++)
{
   str=myArray[i].label;
   somethingElse=...;
   andAnotherThing=new MyInstance(somethingElse);
   ...
}

Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T00:23:51+00:00Added an answer on May 27, 2026 at 12:23 am

    In Actionscript and Javascript, variables are scoped to the function, not the block. It’s called variable hoisting.

    ActionScript 3.0 Variables

    An interesting implication of the lack of block-level scope is that
    you can read or write to a variable before it is declared, as long as
    it is declared before the function ends. This is because of a
    technique called hoisting , which means that the compiler moves all
    variable declarations to the top of the function.

    So effectively your code will behave like this regardless of where you declare your variables within the function:

    var count:int;
    var str:String;
    var i:uint;
    var somethingElse:Class;
    var andAnotherThing:MyInstance;
    
    count = myArray.length;
    for(i=0;i<count;i++)
    {
       str=myArray[i].label;
       somethingElse = ...;
       andAnotherThing = new MyInstance(somethingElse);
       ...
    }
    

    Nevertheless, I still prefer to declare my variables within the blocks that use them primarily for maintenance reasons and general clarity.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following is said to be better than having First() and Second() as public
the second function isnt working? $('.edit_hover').live('hover', function(e){ $(this).stop(); var half_width = ($(this).css('width').slice(0, -2))/2; var
I've seen second one in another's code and I suppose this length comparison have
View this code: function testprecision(){ var isNotNumber = parseFloat('1.3').toPrecision(6); alert(typeof isNotNumber); //=> string }
Not using operators makes my code obscure. (aNumber / aNother) * count is better
Wondering how some of the more experienced (or anyone with a better idea than
I have two OpenCL kernels: the first is a parallel task and the second
I currently use this style to create a js class like structure: var JSClass
(second question today - must be a bad day) I have a dataframe with
The second question is: When do I use what of these two?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.