A few things about JavaScript and Python

Bo Louie
5 min readDec 18, 2022

--

apple and orange contributed by Chloe Zhang at www.pngitem.com

JavaScript and Python are two very different programming languages, but they do have some similarities as well.

One similarity between the two languages is that they are both dynamically typed, which means that variables do not have a fixed type and can hold values of different types at different times. In a dynamically typed language, the type of a variable is determined at runtime, based on the value that is assigned to it. This means that you can assign a value of any type to a variable, and the variable will automatically adjust to the correct type.

Here is an example of how this works in Python:

x = 10
print(type(x)) # Output: <class 'int'>

x = "hello"
print(type(x)) # Output: <class 'str'>

x = [1, 2, 3]
print(type(x)) # Output: <class 'list'>

In this example, we assign an integer value, a string value, and a list value to the variable x in turn. The type of the variable is determined at runtime based on the value that is assigned to it, so the type of x changes from an integer to a string to a list.

JavaScript works in a similar way, with variables being able to hold values of any type at different times:

let x = 10;
console.log(typeof x); // Output: "number"

x = "hello";
console.log(typeof x); // Output: "string"

x = [1, 2, 3];
console.log(typeof x); // Output: "object"

In both Python and JavaScript, dynamically typed variables can be very useful because they allow you to write flexible and adaptable code that can handle different types of data. However, they can also make it more difficult to catch type-related errors, since the type of a variable is not checked at compile time.

Python and JavaScript both support object-oriented programming and have similar syntax for defining and using classes, for example:

In Python:

class Person:
def __init__(self, name, age):
self.name = name
self.age = age

def say_hi(self):
print(f"Hi, my name is {self.name} and I am {self.age} years old.")

person = Person("John", 30)
person.say_hi() # Output: "Hi, my name is John and I am 30 years old."

In JavaScript:

class Person {
constructor(name, age) {
this.name = name;
this.age = age;
}

sayHi() {
console.log(`Hi, my name is ${this.name} and I am ${this.age} years old.`);
}
}

const person = new Person("John", 30);
person.sayHi(); // Output: "Hi, my name is John and I am 30 years old."

As you can see, both Python and JavaScript use the class keyword to define a class and the constructor or __init__ method to define the initializer for the class. They also both use the self or this keyword to refer to the current instance of the class and access its attributes and methods; read my comparison post about keywords and common bugs.

Both programming languages also use the . operator to access attributes and methods of an object. In Python, we use the . operator to access attributes and methods of an object, and in JavaScript, we use it to call methods on an object.

Overall, the syntax for defining and using classes in Python and JavaScript is quite similar, with only slight differences in the specific keywords and syntax used.

Another similarity is that they both have support for first-class functions, which means that functions can be treated as values and passed as arguments to other functions or stored in variables.

Here is an example in JavaScript:

function greet(name) {
console.log(`Hello, ${name}!`);
}

function sayHello(greetingFunc, name) {
greetingFunc(name);
}

sayHello(greet, 'John'); // Output: "Hello, John!"

In this example, the greet function is passed as an argument to the sayHello function and is invoked within the sayHello function.

Here is an equivalent example in Python:

def greet(name):
print(f'Hello, {name}!')

def say_hello(greeting_func, name):
greeting_func(name)

say_hello(greet, 'John') # Output: "Hello, John!"

In both examples, the function greet is passed as an argument to the sayHello/say_hello function and is invoked within the sayHello/say_hello function.

In addition to passing functions as arguments, you can also return functions from other functions in both JavaScript and Python. Here is an example in JavaScript:

function createGreeting(greeting) {
return function(name) {
console.log(`${greeting}, ${name}!`);
}
}

const sayHi = createGreeting('Hi');
sayHi('John'); // Output: "Hi, John!"

And here is an equivalent example in Python:

def create_greeting(greeting):
def greeting_func(name):
print(f'{greeting}, {name}!')
return greeting_func

say_hi = create_greeting('Hi')
say_hi('John') # Output: "Hi, John!"

In both examples, the createGreeting/create_greeting function returns a new function that can be used to greet someone with a specific greeting.

Despite these similarities, there are also many differences between the two languages. For example, Python is a general-purpose programming language that is widely used in a variety of fields, such as web development, data science, and scientific computing. JavaScript, on the other hand, is primarily used for building web applications and is often used in conjunction with HTML and CSS.

Additionally, Python uses indentation to denote code blocks, whereas JavaScript uses curly braces. Python also has a larger standard library and a more readable syntax, while JavaScript has a wider range of use cases and is often used for building interactive user interfaces.

Overall, it is important to understand both the similarities and differences between Python and JavaScript in order to effectively use these languages for different tasks.

It is generally a good idea to focus on learning one programming language at a time, especially when you are just starting out. Trying to learn multiple programming languages simultaneously can be overwhelming and may make it more difficult to fully understand the concepts and principles of each language.

However, once you have a good foundation in one programming language, it can be helpful to learn additional languages in order to broaden your skill set and increase your versatility as a programmer.

In the case of Python and JavaScript, learning both languages can be especially beneficial because they are both widely used in the field of web development. Python is often used for server-side programming, while JavaScript is used for client-side programming and building interactive user interfaces. Having knowledge of both languages can open up a wider range of career opportunities and allow you to build more comprehensive web applications.

If you decide to learn both Python and JavaScript at the same time, it can be helpful to focus on one language at a time and then switch to the other once you feel comfortable with the concepts and syntax. It is also important to practice regularly and work on projects in order to solidify your understanding of the languages.

Disclaimer: This article was created with the help of AI.

Thanks for reading and hopefully you found this helpful. I’m open to feedback and if you find an error, please kindly let me know about it.

References:

Anthony Alicea’s Udemy Course: JavaScript Understanding the Weird Parts

https://openai.com/blog/chatgpt/

Haverbeke, M. (2018). Eloquent JavaScript 3rd Ed.: A modern introduction to programming. No Starch Press.

--

--

Bo Louie

transformer | doing design research and web development things.