I'm having trouble with how member variables of objects work in javascript. I have this function which finds a specific table in HTML and it seems to be working just fine. But it for some reason the member variables of the object associated with the table becomes null...
I tried debugging and here is what I got.
let tables;
function find_table(s) {
    for(const table of tables){
        if(table.prefix === s){
            return table;
        }
    }
    return null;
}
function search_table(table){
    const tmp = find_table(table);
    console.log(tmp.prefix); // debug0
    tmp.search();
}
Inside the object called "table".
search(){
        const search_text = $("#" + this.prefix + "_search_text").val().toLowerCase();
        let item_count = 0;
        $("#" + this.prefix +"_table tr").each(function () {
            if (!$(this).hasClass("search_ignore")) {
                let count = 0;
                let show = false;
                console.log(this.prefix); // debug1
                for(const type of this.types){ // error here. this.types is undefined
                    const temp = $(this).find("td").eq(count).text().toLowerCase();
                    if(type === 0){
                        // 文字列検索
                        show = temp.includes(search_text)
                    }else if(type === 2){
...(the rest is probably irrelevant)...
So, I call the search_table() function so I can search for a table in tables with a string. The function find_table() seems to be working fine. The debug0 line returns "admin_account_list" properly. But after that when search() of table is called, the variable this.types has for some reason, turned into null. And the debug1 line also returns null.
I expected it to have the value I have assigned when the constructor was called.
I would greatly appreciate it if someone helped me understand what I did wrong here.
 
    