My thoughts about Javascript
I found JavaScript to be a very interesting language, especially since I already had some knowledge of C# and Python. It’s fascinating to see the similarities and differences between them. Much of JavaScript for me involved reviewing concepts I was already familiar with, so during the beginning of the JavaScript section, I spent a lot of class time experimenting with C# and occasionally working with JavaScript. I really enjoyed learning about JavaScript and exploring some of the new concepts I wasn’t used to before. I’m very excited to continue learning JavaScript, C#, and any other languages I might encounter in the future. It’s amazing to see all the subtle differences between these languages. Below I have provided examples of differences that I noticed.
// This is how you declare an array in JavaScript
const people = [];
// This is how you declare an array in c#
str[] people;
Arrays and objects have always intrigued me because I knew about their existence but never truly understood how to use them or how they work. Now that I’ve learned more, I’m excited to try incorporating them into my free time projects, particularly the game I’m working on. I think they could be incredibly useful tools for organizing and managing the data and mechanics in my game, and I’m eager to explore their potential.