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

  • Home
  • SEARCH
  • 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 8954383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:18:25+00:00 2026-06-15T14:18:25+00:00

I get an Uncaught TypeError: Cannot read property ‘length’ of undefined at line 26.

  • 0

I get an ” Uncaught TypeError: Cannot read property ‘length’ of undefined ” at line 26. I can’t see the reason this is happening, because the console logs line 24 as an array with a value at index 1, but line 25 logs as undefined.

"use strict"
function findpath(G,si,di){
    //G is an array of nodes (with id, lat, lon)
    var P=[si];
    var C=[0,P];
    var M=[C];
    var O=[];
    var ctr=0;
    var done = false;
    var reached = false;
    var best = undefined;


    while(!done){
        ctr++;
        if( ctr > 100 ){
            alert("Sorry, can't find the destination.");
            return P;
        }

        for (var i=0;i<M.length;++i){
            console.log(P);
            console.log(C);
            console.log(M[i]);
            console.log(M[i[0]]);
            var last = M[i[1]].length;
            var v = M[i[1[last]]];

            //select a random neighbor...
            if( v.N.length === 0 ){
                alert("Wat?");
                return [];
            }
            else if( v.N.length === 1 ){
                break;
            }
            else if( v === di ){
                break;
            }
            else {
                for (var j=0;j<v.N.length;++j){
                    var temp = M[i];
                    O.push(temp[1].push(v.N[j]));
                    var dist = distance(v.lat,v.lon,v.N[j].lat,v.N[j].lon);
                    var temp2 = O.length-1;
                    O[temp2[0]]+=dist;
                    if (v.N[j]===di){
                        reached = true;
                        if (best === undefined){
                            console.log("ASSIGN");
                            best = O[temp2];
                        }
                        else {
                            if (O[temp2[0]]<best[0]) {
                                best = O[temp2];
                            }
                        }
                    }
                }
            }
        }
        M = O;
        var any = false;
        for (var i=0;i<M.length;++i) {
            if (M[i[0]]<best[0]) {
                any = true;
            }
        }
        if (!any) {
            done = true;
        }
    }

    //return the path
    return best[1];
}

function distance(x1,y1,x2,y2){
    return Math.sqrt(Math.pow((x2-x1),2)+Math.pow((y2-y1),2));
}

Output:

Array[1]     findpath.js:22
Array[2]     findpath.js:23
Array[2]
   0: 0
   1: Array[1]
      0: 13
   length: 1
   __proto__: Array[0]
   length: 2
   __proto__: Array[0]     findpath.js:24
undefined findpath.js:25
Uncaught TypeError: Cannot read property 'length' of undefined    findpath.js:26
  • 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-15T14:18:27+00:00Added an answer on June 15, 2026 at 2:18 pm

    EDIT – per your comments, it looks like you have an array of arrays, and that, if I understand you correctly, M[i[1]] should be M[i][1]


    You’re checking

    console.log(M[i[0]]);
    

    but then accessing

     var last = M[i[1]].length;
    

    it seems as though M[i[0]] contains a valid array, but M[i[1]] does not.

    I would recommend taking a closer look at your M, and i arrays to figure out why M[i[1]] is undefined.


    Edit, as the comment below says, i appears to be the loop control variable. Did you mean to type simply M[i] ?

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

Sidebar

Related Questions

When I start the diashow this is what I get: Uncaught TypeError: Cannot read
I get the error Uncaught TypeError: Cannot read property 'getContext' of null and the
I'm checking if(response[0].title !== undefined) , but I get the error: Uncaught TypeError: Cannot
var data = {}; .... data[someprop][someotherprop] = 'bla bla' I get Uncaught TypeError: Cannot
In running this on index.html, I get the following error: Uncaught SyntaxError: Unexpected token
I found several other Uncaught TypeError based questions on SO but not this particular
When ever I load a page with a very simple example I get Uncaught
Since I use revision 54 instead of revision 48 I get this excetption in
I get the following error when trying to use the TorchPluging : file:///android_asset/www/web/index.html: Line
I'm using this code to get the Google Maps JavaScript v3 map to work.

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.