testare now going to build a simple GET request, in this case, I will use the Random User API and we will get 10 users and show them on the page using vanilla JavaScript.

JavaScript Methods var person = {
  firstName: “John”,
  lastName : “Doe”,
  id       : 5566,
  fullName : function() {
    return this.firstName + ” ” + this.lastName;
  }
};

test