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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:43:08+00:00 2026-06-05T21:43:08+00:00

I am inserting some data into an array but I am getting ,9,My firstname,My

  • 0

I am inserting some data into an array but I am getting

,9,My firstname,My lastname,myemail@example.com,123456789

out in my console. How can I remove comma from first element i.e. 9? here is my code

var data = new Array();

                $(row_el.children("td")).each(function(i) {
                    var td = $(this);
                    //var data = td.html();
                    var td_el = td.attr('class');
                    //arr[i] = data;

                    if(!td.hasClass("element")) {
                        data[i] = td.html();        
                        console.log(i + ": " + data);
                    }

                });

I want output like this

9,My firstname,My lastname,myemail@example.com,123456789

then I will pass this array to a function and loop through this array.

  • 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-05T21:43:10+00:00Added an answer on June 5, 2026 at 9:43 pm

    Just use push() (MDN docu) instead of setting to a specific position inside your array:

    var data = new Array();
    
    $(row_el.children("td")).each(function(i) {
        var td = $(this);
        //var data = td.html();
        var td_el = td.attr('class');
        //arr[i] = data;
    
        if(!td.hasClass("element")) {
            data.push( td.html() );        
            console.log(i + ": " + data);
        }
    
    });
    

    The problem is, that not all the elements in the array processed by each() result in an entry in your array. However, the index submitted to your callback (i) counts upwards nonetheless. So if there are some elements, that do not result in an entry to your array, these positions are filled with undefined (as long as you enter an element at a later position). These undefined entries now result in an empty string when outputting it the way you do, thus resulting to your leading comma.

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

Sidebar

Related Questions

I am inserting some data into a table, but it occasionally clashes with other
I'm inserting some data into a div container via ajax. When its just straight
After inserting new data into a table, I need to select some of the
I am getting strange error while inserting data into mysql table column. Details: Create
I'm inserting some data into a database from a form. I'm using addslashes to
i have a problem in inserting some data into a table. I have done
I've got a classic case of UPDATE or INSERTing some data into a table.
I am inserting some data into a MySQL table using CodeIgniter. Because I am
I'm working on a online game. I got some problems with inserting new data
After inserting new html to DOM,I need to add some listeners to it. But

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.