Coding languages

Every language is designed to communicate instructions to a machine, or computer. Some languages make this process simpler like HTML

I am going to list the languages I know and show the basic syntax of each of them

Languages *JavaScript Python PHP Ruby *JQuery Swift Java
Functions function name(param){code;} def python(param): **\n code function name(param) {code;} def func(param) code end See JavaScript func name(type:param) -> type {code;} scopetype name (type[] param) {code;}
For Loops for (var i = 0; i < 10; i++) {console.log(i)} for i in range(11): **\n **\i print(i) for ($i = 0; $i < 10; $i++){echo($i)} for i in 1..10 **\n **\i puts i See JavaScript for (int i = 0; i < 10; i++) {println(i) } for (int i = 0; i < 10; i++) {System.out.println(i) }
While Loops var i = 0;while (i < 10) {console.log(i);**\n i++} i=0 while i in range(11): **\n **\i print(i) $i=0;while ($i < 10){$i+=1; echo($i)} i=0 while i in 1..10 **\n **\i puts i See JavaScript var i = 0;while (i < 10) {print(i); i++} var i = 0;while (i < 10) {System.out.println(i); i++}
variables var variable = 0;var string = "string";var bool = true; Basically Javascript without the var and a capital T in true $integer = 0;$string = "string";$bool = True; Basically python See JavaScript Basically Javascript int integer = 0;char string = "string"; Boolean bool = true

*JQuery is an extension of JavaScript that makes styling easy.

**\newline and **\indent

JavaScript

Javascript is an object-oriented-language that takes care of all of the animations and effects on many websites. I made a JavaScript file that takes care of all the buttons on this website and I also used javascript to create Most of all the animations on my website

Python

I made an input and output game over here and I also can replicate the many projects I have created in javascript in Python. To see some see the processing js animations in the index of the website.

JQuery

The power of JQuery is one click away. (click this!)

Swift

Swift is the newest Object-Oriented-language that creates apps on apple's app platform. This language was meant to replace objective-C. It did this by creating a simple syntax, versatility of javascript, and efficiency of C++.

Java

Java is an object oriented programming language that almost everyone has heard of. Java is a language created by James Gosling in Sun microsystems. The syntax was based off of c++. Java is universal with any machine aslong as it has a Java Virtual machine or JVM.