Category: Programming

19
Apr
2020

Loop Over Integer Colors

colors = [11, 34.1, 98.2, 43, 45.1, 54, 54] for items in colors: if isinstance(items,int): print(items)  

13
Apr
2020

Python Course Started, Alhamdulillah

The Python Mega Course: Build 10 Real World Applications Bismillahir Rahmanir Rahim. I am exploring this course…

20
Dec
2019

JavaScript Code Finally Bujha   function Person(first, last, age, gender,interests){ this.name={ first:first, last=last }; this.age=age; this.gender=gender; this.interests=interests;…

20
Dec
2019

Code: <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>Object-oriented JavaScript example</title> </head> <body> <script> const person={ name:[‘Syed Ahmed’,’Zaki’],…

20
Dec
2019

What is this keyword in OOP

What is “this”? You may have noticed something slightly strange in our methods. Look at this one…

20
Dec
2019

JavaScript OOP Paradigm Clear

https://www.freecodecamp.org/news/an-introduction-to-object-oriented-programming-in-javascript-8900124e316a/ https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Basics