-
is there a difference between these two original lines(12 & 13): SimpleStorage simpleStorage = new SimpleStorage();
simpleStorageArray.push(simpleStorage); and using this instead: simpleStorageArray.push(new SimpleStorage()); |
Beta Was this translation helpful? Give feedback.
Answered by
krakxn
Jul 15, 2022
Replies: 1 comment 2 replies
-
Please encapsulate with three backticks before and after the code to format it well. I do not think so, it should yield the same results. IMO Patrick made it explicit for beginners - as it is an introductory lesson. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
paravar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please encapsulate with three backticks before and after the code to format it well.
I do not think so, it should yield the same results. IMO Patrick made it explicit for beginners - as it is an introductory lesson.