HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <script> function bike(brand, model, color){ this.brand = brand; this.model = model; this.color = color; } var honda = new bike("Honda", "CB1000R", "Red"); document.write(honda instanceof bike); </script> </body> </html>
OUTPUT
×

Save as Private