This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
what evers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Norman is normal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
thats so raven |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
one and two |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LINCOLN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Who kayvon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Sandwich(bread, ingredients, cut) { | |
this.bread = bread; | |
this.ingredients = ingredients; | |
this.cut = cut; | |
this.serve = function() { | |
console.log("here's your " + this.name + ", enjoy!"); | |
} | |
} | |
var blt = new Sandwich("white", ["bacon","lettuce","tomato","mayo"],"rectangle"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Sandwich(bread, ingredients, name) { | |
this.bread = bread; | |
this.ingredients = ingredients; | |
this.name = name; | |
} | |
function serve() { | |
console.log("here's your " + this.name + ", enjoy!"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Sandwich(bread, ingredients, name) { | |
this.bread = bread; | |
this.ingredients = ingredients; | |
this.name = name; | |
} | |
function serve(customer) { | |
// From the variable gc, we have access to this.name | |
console.log("Hey " + customer + ", here's your " + this.name + ", enjoy!"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class RegistrationForm extends React.Component { | |
render() { | |
return ( | |
<form> | |
<label>Username</label> | |
<input type="text" /> | |
<label>Password</label> | |
<input type="password" /> | |
<button type="submit">Register</button> | |
</form> |
OlderNewer