Posts

Showing posts from January, 2024

#3 Comments in Python (Python Tutorials)

Image
Comments in Python In this part of our python tutorials series, you will learn what comments are, how to write them and why do we generally write comments in our codes. Comments are usually written in one line. But there are times when we have to write our comments in separate lines because they are too long to be written in one line. In this tutorial, you will see how we can do that. Watch The Video on Youtube https://blog.arashtad.com/updates/3-comments-in-python-python-tutorials/?feed_id=520&_unique_id=65baf6896f0ea

#2 First Syntax in Python (Python Tutorials)

Image
First Syntax in Python In this part of our python tutorials series you will learn how to write the very first syntax in python. This is considered as a "Hello World!" part of our tutorial where you will learn how to print somrthing on the console and also how to run a code in python using the built-in terminal on VSCode. In addition, you will learn a bit if statement. However, the complete if statement tutorial will be covered throughout the course in a separate video. Watch The Video on Youtube https://blog.arashtad.com/updates/2-first-syntax-in-python-python-tutorials/?feed_id=508&_unique_id=65ba4dabd9052

#1 introduction (Python Tutorials)

Image
Watch The Video on Youtube https://blog.arashtad.com/updates/1-introduction-python-tutorials/?feed_id=496&_unique_id=65b9a50bd9ab9

#39 JSON (JavaScript Tutorials for Beginners to Intermediate)

Image
JSON In this part of our tutorials on JavaScript, you will learn about JSON. JSON stands for Javascript Object Notation and it is a format of data that can be transfered between different programming languages. JSON itself is of the type string. By parsing a JSON you can convert this string to an object and when you stringify an object, you convert it back to a JSON data. Watch The Video on Youtube https://blog.arashtad.com/updates/39-json-javascript-tutorials-for-beginners-to-intermediate/?feed_id=484&_unique_id=65b8fc8590895

#38 JavaScript Modules (JavaScript Tutorials for Beginners to Intermediate)

Image
Modules in JavaScript In this part of our tutorials on JavaScript, you will learn about the modules. There are times when you have multiple .js files and you want to import the variables or classes from one to another. In these circumstances you use the modules. Watch The Video on Youtube https://blog.arashtad.com/updates/38-javascript-modules-javascript-tutorials-for-beginners-to-intermediate/?feed_id=472&_unique_id=65b8543e9065b

#37 JavaScript Class (JavaScript Tutorials for Beginners to Intermediate)

Image
Classes in JavaScript In this part of our tutorials on JavaScript, you will learn about the classes. The classes in JavaScript will help you write object oriented programs and have a more efficient code than ever. In this video you will see how you can create a class and create a constructor with its variables. Watch The Video on Youtube https://blog.arashtad.com/updates/37-javascript-class-javascript-tutorials-for-beginners-to-intermediate/?feed_id=460&_unique_id=65b7aad98c5c1

#36 This in JavaScript (JavaScript Tutorials for Beginners to Intermediate)

Image
This in JavaScript In this part of our tutorials on JavaScript, you will learn about the 'this' phrase. We might use 'this' on so many occasions such as when we are referring to an object, or an event, or a function and so on. In this part, you will become familiar with all of these occasions and learn how to use "this". Watch The Video on Youtube https://blog.arashtad.com/updates/36-this-in-javascript-javascript-tutorials-for-beginners-to-intermediate/?feed_id=448&_unique_id=65b7035b1b7e4

#35 JavaScript Strict Mode (JavaScript Tutorials for Beginners to Intermediate)

Image
JavaScript Strict mode In this part of our tutorials on JavaScript, you will learn about the strict mode. There are a group of errors in JavaScript that are not normally raised except when you use the strict mode. We will learn how to use the strict mode and what kind of errors might occur when you use it. Watch The Video on Youtube https://blog.arashtad.com/updates/35-javascript-strict-mode-javascript-tutorials-for-beginners-to-intermediate/?feed_id=436&_unique_id=65b65a51369a7

#34 JavaScript Errors (JavaScript Tutorials for Beginners to Intermediate)

Image
Error Handling in JavaScript In this part of our tutorials on JavaScript, you will learn about the error handling. This is an import part of every programming language that you need to know in order to manage the probable errors that may occur on your codes. Watch The Video on Youtube https://blog.arashtad.com/updates/34-javascript-errors-javascript-tutorials-for-beginners-to-intermediate/?feed_id=424&_unique_id=65b5b2b013006

#33 JavaScript Maps (JavaScript Tutorials for Beginners to Intermediate)

Image
Maps in JavaScript In this part of our tutorials on JavaScript, you will learn about the maps. Maps are another type collections like the arrays with the difference that maps have key and value pairs. This kind of pair can help you create a database object. Throughout this, you will learn about all the details related to the maps. Watch The Video on Youtube https://blog.arashtad.com/updates/33-javascript-maps-javascript-tutorials-for-beginners-to-intermediate/?feed_id=412&_unique_id=65b50788df2ab

#32 Sets in JavaScript (JavaScript Tutorials for Beginners to Intermediate)

Image
Sets in JavaScript In this part of our tutorials on JavaScript, you will learn about the sets. Sets are another type of collections that work nearly the same as the arrays. They have items that you can loop through and do all the kind of operations that you can do with the arrays. Watch The Video on Youtube https://blog.arashtad.com/updates/32-sets-in-javascript-javascript-tutorials-for-beginners-to-intermediate/?feed_id=400&_unique_id=65b460f1ecfb3

#31 While Loop in JavaScript Part 2 (JavaScript Tutorials for Beginners to Intermediate)

Image
While Loop (Part 2) In this part of our tutorials on JavaScript, you will learn about the while loop. This kind of loop has the same operation with the for loop. In this video, you will learn about the differences between these two kinds of loops. Also, you will learn how to work with the while loop statement. Watch The Video on Youtube https://blog.arashtad.com/updates/31-while-loop-in-javascript-part-2-javascript-tutorials-for-beginners-to-intermediate/?feed_id=388&_unique_id=65b3b63fcc6d8

#30 JavaScrit While Loop Part 1 (JavaScript Tutorials for Beginners to Intermediate)

Image
While Loop (Part 1) In this part of our tutorials on JavaScript, you will learn about the while loop. This kind of loop has the same operation with the for loop. In this video, you will learn about the differences between these two kinds of loops. Also, you will learn how to work with the while loop statement. Watch The Video on Youtube https://blog.arashtad.com/updates/30-javascrit-while-loop-part-1-javascript-tutorials-for-beginners-to-intermediate/?feed_id=376&_unique_id=65b30e52b2d5f

#29 For Loop in JavaScript

Image
For Loop in JavaScript In this part of our tutorials on JavaScript, you will learn about the For Loop. This kind of loop works nearly the same as while loop which we will cover in the next tutorial. using for loop, you can do certain job for a fixed number of times. You can also loop through an array and do some operation on its items. Watch The Video on Youtube https://blog.arashtad.com/updates/29-for-loop-in-javascript/?feed_id=364&_unique_id=65b264c72e804

#28 Switch Case in JavaScript (JavaScript Tutorials for Beginners to Intermediate)

Image
JavaScript Switch Case In this part of our tutorials on JavaScript, you will learn about switch case statement. It works just the same as if statement with else if and some small differences. In this tutorial, you will learn about details of using the switch case statement in JavaScript. Watch The Video on Youtube https://blog.arashtad.com/updates/28-switch-case-in-javascript-javascript-tutorials-for-beginners-to-intermediate/?feed_id=352&_unique_id=65b1bc08c95b3

#27 If Statement in JavaScript

Image
If Statement in JavaScripts In this part of our tutorials on JavaScript, you will learn about if statement. Like any other programming language, if statement is used to check a conditional statement and works with the boolean data type in itself. Watch The Video on Youtube https://blog.arashtad.com/updates/27-if-statement-in-javascript/?feed_id=340&_unique_id=65b11392773f5

#26 JavaScript Arrays Part 7 (JavaScript Tutorials for Beginners to Intermediate)

Image
Arrays in JavaScripts (Part 7) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Watch The Video on Youtube https://blog.arashtad.com/updates/26-javascript-arrays-part-7-javascript-tutorials-for-beginners-to-intermediate/?feed_id=328&_unique_id=65b06a490757f

#25 JavaScript Arrays Part 6 (JavaScript Tutorials for Beginners to Intermediate)

Image
Arrays in JavaScripts (Part 6) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Watch The Video on Youtube https://blog.arashtad.com/updates/25-javascript-arrays-part-6-javascript-tutorials-for-beginners-to-intermediate/?feed_id=316&_unique_id=65afc446328ec

#24 JavaScripts Arrays Part 5

Image
Arrays in JavaScripts (Part 5) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Watch The Video on Youtube https://blog.arashtad.com/updates/24-javascripts-arrays-part-5/?feed_id=304&_unique_id=65af196e51280

#23 JavaScript Arrays Part 4

Image
Arrays in JavaScripts (Part 4) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Watch The Video on Youtube https://blog.arashtad.com/updates/23-javascript-arrays-part-4/?feed_id=292&_unique_id=65ae704dd8303

#22 JavaScript Arrays Part 3 (JavaScript Tutorials for Beginners to Intermediate)

Image
Arrays in JavaScripts (Part 3) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Watch The Video on Youtube https://blog.arashtad.com/updates/22-javascript-arrays-part-3-javascript-tutorials-for-beginners-to-intermediate/?feed_id=280&_unique_id=65adc78693e9d

#21 JavaScript Arrays Part 2 (JavaScript Tutorials for Beginners to Intermediate)

Image
Arrays in JavaScripts (Part 2) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Official Website: https://arashtad.com More Video Tutorials: https://tuts.arashtad.com Our Custom Services: https://arashtad.com/services Blog: https://blog.arashtad.com Vimeo: https://vimeo.com/arashtad Udemy: https://www.udemy.com/user/arashtad GitHub: https://github.com/arashtad Linkedin: https://www.linkedin.com/company/arashtad Twitter: https://twitter.com/arashtad Watch The Video on Youtube https://blog.arashtad.com/updates/21-javascript-arrays-part-2-javascript-tutorials-for-beginners-to-intermediate/?feed_id=268&_unique_id=65ad1ec9c7665

#20 JavaScript Arrays Part 1 (JavaScript Tutorials for Beginners to Intermediate)

Image
Arrays in JavaScripts (Part 1) In this part of our tutorials on JavaScript, you will learn about the arrays. Arrays are a group of items stored inside one variable. The type of arrays in JavaScript is object. So we have no such type as array. We have covered several tutorials on the arrays in which you will learn how to access different items inside of an array, create a subset of it. slice it, and so on. Watch The Video on Youtube https://blog.arashtad.com/updates/20-javascript-arrays-part-1-javascript-tutorials-for-beginners-to-intermediate/?feed_id=256&_unique_id=65ac7899a16dc

#19 JavaScript Numbers Part 2 (JavaScript Tutorials for Beginners to Intermediate)

Image
Numbers in JavaScripts (Part 2) In this part of our tutorials on JavaScript, you will learn about the numbers. In JavaScript we do not have float or integer data type and instead we call all of them numbers. So if you look for the data type of an integer or a float in Javascript, you will only see number as the result. In this video and the next one you will find all the tips and tricks of working with numbers in JavaScript. Watch The Video on Youtube https://blog.arashtad.com/updates/19-javascript-numbers-part-2-javascript-tutorials-for-beginners-to-intermediate/?feed_id=244&_unique_id=65abcd30e5f87

#18 JavaScript Numbers Part 1 (JavaScript Tutorials for Beginners to Intermediate)

Image
Numbers in JavaScripts (Part 1) In this part of our tutorials on JavaScript, you will learn about the numbers. In JavaScript we do not have float or integer data type and instead we call all of them numbers. So if you look for the data type of an integer or a float in Javascript, you will only see number as the result. In this video and the next one you will find all the tips and tricks of working with numbers in JavaScript. Watch The Video on Youtube https://blog.arashtad.com/updates/18-javascript-numbers-part-1-javascript-tutorials-for-beginners-to-intermediate/?feed_id=232&_unique_id=65ab24852abef