¿Por qué table.current.row.length no funciona?

window.onload = function(){
  var table = document.getElementById("tbl");
  console.log(table.querySelectorAll("tbody tr").length);
}
Ibrahim