Skip to main content

Introduction to Javascript

Javascript is a dynamic programming language. Now I’m not going to give you technical information. There are already a lot of resources on the Internet. I’m more interested in what can be done with this. Codes written in Javascript are executed by the browser. So no compiler is needed. You can interact with the user via Javascript. An example is a program that draws a circle when the user clicks a button. A lot of things like this can be done with javascript.
It is very important for mathematical programming, in fact, you will see it when writing programs with Javascript. If you have done some research on the internet, you will see how important Javascript is. For example, Node.js, Angular.js, Particles.js, Vue.js, React.js, Wallaby.js, Backbone.js, Meteor.js, Require.js, and many other projects are available.
I hope I will give short lectures with Javascript in my future articles. Then I’m thinking of doing a lot of examples.

Comments

Popular posts from this blog

How to Make Blink LED with PIC16F628A

How to Make Blink LED With PIC16F628A In this project tutorial, we are going to make blink-led projects with a pic microcontroller. After you read this tutorial you can build a PIC microcontroller project with XC8 on MPLAB IDE. We are going to make 3 different blinking projects. These projects are basic. Just learn how to make a basic project with a PIC microcontroller. You can see below which projects we are going to make; Blinking LED with 1s delay, LED with button, Blinking LED with a button.

Ultrasonic Sensor HC-SR04 With PIC Microcontroller

How Ultrasonic Sensor Works An ultrasonic sensor is a very useful sensor that measures distances with sounds. We used the PIC16F628A microcontroller for this project. This microcontroller has TMR1 which we are going to use. We need 2 I/O pins for TRIG and ECHO pins. For showing distance, we used an LCD. For more information about the LCD library and usage click the button below. LCD Interfacing with PIC Using XC8

DC Motor Speed Control With PIC16F628A

DC Motor Speed Control Simulation In this project, we will control the speed and direction of a DC motor using the PIC16F628A microcontroller. We will write the software in MPLAB IDE with the XC8 language that will send a PWM signal to L293D to control the motor. Finally, we will simulate it through the Proteus software. PWM (Pulse Width Modulation) You can get more information about the PWM signal from the link above. Now let’s examine the L293D motor driver.