Skip to content

Commit

Permalink
change var
Browse files Browse the repository at this point in the history
  • Loading branch information
robertchoi committed Aug 10, 2019
1 parent bc3cb64 commit c2beac1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ <h5>$24.99</h5>
<script>
// add name to contract data
function addBuy() {
var yourname = "1";
var yourname = '1';
var nameLen = yourname.length;
console.log(yourname);
console.log(nameLen);

var yourquote = "1c";
var yourquote = '1c';
var ageLen = yourquote.length;
console.log(yourquote);
console.log(nameLen, yourname, ageLen, yourquote);
Expand Down

0 comments on commit c2beac1

Please sign in to comment.