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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:39:50+00:00 2026-06-04T06:39:50+00:00

Can you please look at this function and tell me where the error is?

  • 0

Can you please look at this function and tell me where the error is? Firebug says that “string is undefined” … Any help is appreciated.
(links is declared above, console.debug(string) shows a comma delimited string)

function adRotate() {
    var id = Math.floor(Math.random()*links.length);
    var string = links[id];
    var item = string.split(',');
    console.debug(item);
}
  • 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-06-04T06:39:51+00:00Added an answer on June 4, 2026 at 6:39 am

    The code should work. If the console “shows a comma delimited string“, this should either be a string or an Array.

    In case adRotate(["one,link", "second,link,"]) – links is an Array – you’d get:

    function adRotate(links) {
        var id = Math.floor(Math.random()*links.length); // valid index in links
        var str = links[id]; // selects one of the links: str is a String
        var item = str.split(','); // splits the string to an Array
        console.debug(item); // logs the array
    }
    

    possible results: ["one","link"] or ["second","link"]

    In case adRotate("one link, and second") – links is a String – you’d get:

    function adRotate(links) {
        var id = Math.floor(Math.random()*links.length); // valid index in links
        var str = links[id]; // selects one of the chars in the string: str is a String of length 1
        var item = str.split(','); // splits the one-char-string to an Array
        console.debug(item); // logs the array
    }
    

    possible results: ["o"], ["n"], ["e"], [" "], …, ["k"], ["",""] (for the comma char), ["i"], etc.

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

Sidebar

Related Questions

There is some problem, i can't understand anyway. look at this code please <script
Any body please can please help me, how to center a JFrame on Mac.
can someone look at this code and tell me if I am creating the
I need some help, PLEASE LOOK AT EDIT 2 This is code of huffman:
Can someone please take a look at the small test case below and tell
in this game: http://www.mathsisfun.com/games/allout.html The solve function can solve any case, no matter how
I wonder whether someone can help me please. I've put together this page which
Please look at : http://news.bbc.co.uk/2/hi/europe/8592380.stm The content updates automatically, however, I can't see it
Someone can please answer to me, if have any Editor or Compiler to C
Can anyone please tell what is change request management tool and what is involved

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.