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 3495282
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:06:29+00:00 2026-05-18T12:06:29+00:00

I am trying to run a script where I want a part to run

  • 0

I am trying to run a script where I want a part to run if i exists (meaning that there is a value of i, any value) or another part to run if there is no value for i, can anyone enlight me?

I am talking about the for loop, something like

for (var i=0; i<data.length; i++) {
    if (var i == doesnt exist) {
        code1 runs
    }
    else {
        code2 runs
    }
}

Heres the code in the HTML

<script>
function funfacts(o){
    var facts = document.getElementById('funfacts');
    var data = o.query.results.a;
    for(var i=0;i<data.length;i++){
        var out = document.createElement('a');
        facts.appendChild(out);
        out.href = data[i].href;
        out.innerHTML = data[i].alt;
        out.appendChild(document.createElement('br'));
    }
}
</script>
  • 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-18T12:06:29+00:00Added an answer on May 18, 2026 at 12:06 pm
    for(var i=0;i<data.length;i++){
      if(data[i]){
        code1 runs
      } else {
        code2 runs
      }
    }
    

    This assumes that you are iterating though an array and some of the objects in that array are null. Otherwise, this loop will never run past the last array index, so there is no need to safe guard it unless you actually have null in the array.

    Note that this also will fail on a zero, since a zero is considered as false in javascript. If this is a problem in your case, you can compare it with null

    if (data[i] !== null) {
    

    And outside a loop you can check to see if an array has a value at an index at all via:

    if (typeof(data[i]) === 'undefined') {
    

    This will see if there is a value at that index, could be false, zero, null or anything else and this test would pass.

    But again, inside that loop it’s guaranteed to be within the array bounds.

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

Sidebar

Related Questions

I'm trying to run a bash script that has: ssh -l <username> <compname> 'sudo
I'm trying to make a script that will go into a directory and run
I'm trying to write a shell script that, when run, will set some environment
I have a script that I'm trying to run from cron. When I run
I am trying to create a python script that adds quotations around part of
I'm trying to run a script that uses an ANT build but I don't
I am trying to run a script, which is intense(that is lot of loops
I've Google around and haven't found much... I'm trying to run script/server for my
I'm trying to run a script from the Windows XP console. (In case it's
I'm trying to run this script: import re, os def build_pool(cwd): global xtn_pool, file_pool

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.