Skip to main content

Java Script - Persiapan Awal

 Browser

web browser diperlukan untuk menampilkan hasil dari coding kita  


ada beberapa banyak web browser yang dapat kita gunakan, 

contohnya disini saya sudah mempersiapkan beberapa web browser yang sering digunakan

 ● Google Chrome : https://www.google.com/chrome/ 

● Firefox : https://www.mozilla.org/firefox/

● Microsoft Edge : https://www.microsoft.com/edge 

● Safari : https://www.apple.com/safari/ 

● Opera : https://www.opera.com



Text Editor atau IDE

text editor/ IDE sangat diperlukan untuk tempat kita menulis kode atau script kita yang nantinya akan kita jalankan, ada beberapa teks editor yang sering digunakan contohnya

● Visual Studio Code : http://code.visualstudiocode.com

● Atom : https://atom.io

● Sublime : https://www.sublimetext.com

● WebStorm : https://www.jetbrains.com/webstorm

● Nodepad++ : https://notepad-plus-plus.org


jika anda telah mempersiapkan semua alat dan bahan itu maka sekaran anda sudah siap untuk memulai untuk menulis kode pertama anda

Selamat Bekerja

Comments

Popular posts from this blog

card View

 Tutorial membuat card view makanan hia disini saya akan mengajarkan mengenai card view beserta dengan scrollview , disini saya menyediakan codingan berserta hasil result nya CODINGAN :  <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:app="http://schemas.android.com/apk/res-auto"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"     tools:context=".MainActivity"     android:background="@color/cardview_light_background">     <ScrollView         android:layout_width="match_parent"         android:layout_height="600dp"         android:layout_margin="10dp"         app:layout_constraintTop_toTopOf="parent">     <LinearLayout       ...

Kuis 1 (Image view)

 Nama : Syaid Alfarishi Kelas : XI RPL 2 Codingan :  <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:app="http://schemas.android.com/apk/res-auto"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"     tools:context=".MainActivity">     //Penempatan komponen     <TextView         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:layout_marginBottom="10dp"         android:background="@color/purple_500"         android:padding="20dp"         android:text="bahasa pemrogramman"         android:textAlignment="center"         android:textAllC...

Tugas 2 Get dan Set text

 Tugas 2 Get dan set text (xml) halaman main_activity.xml <? xml version ="1.0" encoding ="utf-8" ?> < androidx.constraintlayout.widget.ConstraintLayout xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: app ="http://schemas.android.com/apk/res-auto" xmlns: tools ="http://schemas.android.com/tools" android :layout_width ="match_parent" android :layout_height ="match_parent" tools :context =".MainActivity" > < TextView android :id ="@+id/textView6" android :layout_width ="match_parent" android :layout_height ="wrap_content" android :background ="@color/purple_500" android :padding ="8dp" android :text ="DATA SISWA" android :textAlignment ="center" android :textColor ="@color/white" android :textSize =...