Cara menggunakan EXERCIC pada JavaScript

Konten

Nasabah berhak mendapatkan HMETD apabila sebelumnya sudah memiliki saham induk yang sudah settle (T+2) pada periode cum date, dimana nasabah memiliki hak untuk menebus/menjual HMETD tersebut.

Berikut kami informasikan cara penebusan Right Issue :

1. Cara Penebusan Right-Issue, Apabila nasabah menggunakan aplikasi HOTS pada [PC / Laptop] :

  • Silahkan login menggunakan user id dan password  
  • Silahkan Pilih Menu  
  • Klik Account  
  • Klik Application of Right/Warrant [4205]  
  • Silahkan mengisi jumlah lembar yang ingin ditebus, pastikan cash tersedia  
  • Klik Apply  

2. Cara Penebusan Right-Issue, Apabila nasabah menggunakan aplikasi Neo HOTS pada [Mobile] :

  • Silahkan login menggunakan user id dan password  
  • Pilih Portfolio 
  • Klik Application of Right  
  • Silahkan mengisi jumlah lembar yang ingin ditebus, pastikan cash tersedia. 
  • Klik Apply 

Berikut kami informasikan cara penjualan Right Issue :

1. Cara Penjualan Right-Issue, Apabila nasabah menggunakan aplikasi HOTS pada [PC / Laptop] :

  • Silahkan login menggunakan user id dan password  
  • Pilih Order  
  • Klik Non Reguler Board Order – [Screen 0813]  
  • Pilih Sell Order  
  • Silahkan mengisi code saham right, harga dan jumlah lot  
  • Silahkan memilih Cash Market  

2. Cara Penjualan Right-Issue, Apabila nasabah menggunakan aplikasi Neo HOTS pada [Mobile] :

  • Silahkan login menggunakan user id dan password  
  • Pilih Order  
  • Klik Non Reguler Board  
  • Pilih Sell Order  
  • Silahkan mengisi code saham right, harga dan jumlah lot  
  • Silahkan memilih [TN] Market  

Nasabah dapat melihat Bid / Offer pada pasar tunai dengan cara sebagai berikut :

1. Apabila nasabah menggunakan aplikasi HOTS pada [PC / Laptop]

  • Silahkan login menggunakan user id dan password  
  • Pilih Quote  
  • Klik Stock Price [Screen-0001]  
  • Input [KODE-R.TN] contoh [SMTR-R.TN]  

2. Apabila nasabah menggunakan aplikasi Neo HOTS pada [Mobile]

  • Silahkan login menggunakan user id dan password  
  • Pilih Order  
  • Klik Stock  Order  
  • Input Kode [KODE-R.TN] contoh [SMTR-R.TN]  

Ketentuan :

  • Transaksi pada Pasar Tunai hanya dapat dilakukan pada Sesi 1.  
  • Proses penebusan Right membutuhkan waktu [T+2].  


  • HMETD
  • RightIssue
  • TebusRight
  • JualRight
  • AksiKorporasi

Edit komentar

Masukkan kata sandi untuk mengedit postingan

Hapus komentarHapus postingan

Masukkan kata sandi untuk menghapus postiingan

  • Previous
  • Overview: Getting started with the web
  • Next

JavaScript is a programming language that adds interactivity to your website. This happens in games, in the behavior of responses when buttons are pressed or with data entry on forms; with dynamic styling; with animation, etc. This article helps you get started with JavaScript and furthers your understanding of what is possible.

Table of Contents

  • What is JavaScript?
  • A Hello world! example
  • What happened?
  • Language basics crash course
  • Conditionals
  • Supercharging our example website
  • Adding an image changer
  • Adding a personalized welcome message
  • A user name of null?
  • In this module

What is JavaScript?

JavaScript is a powerful programming language that can add interactivity to a website. It was invented by Brendan Eich.

JavaScript is versatile and beginner-friendly. With more experience, you'll be able to create games, animated 2D and 3D graphics, comprehensive database-driven apps, and much more!

JavaScript itself is relatively compact, yet very flexible. Developers have written a variety of tools on top of the core JavaScript language, unlocking a vast amount of functionality with minimum effort. These include:

  • Browser Application Programming Interfaces (APIs) built into web browsers, providing functionality such as dynamically creating HTML and setting CSS styles; collecting and manipulating a video stream from a user's webcam, or generating 3D graphics and audio samples.
  • Third-party APIs that allow developers to incorporate functionality in sites from other content providers, such as Twitter or Facebook.
  • Third-party frameworks and libraries that you can apply to HTML to accelerate the work of building sites and applications.

It's outside the scope of this article—as a light introduction to JavaScript—to present the details of how the core JavaScript language is different from the tools listed above. You can learn more in MDN's JavaScript learning area, as well as in other parts of MDN.

The section below introduces some aspects of the core language and offers an opportunity to play with a few browser API features too. Have fun!

A Hello world! example

JavaScript is one of the most popular modern web technologies! As your JavaScript skills grow, your websites will enter a new dimension of power and creativity.

However, getting comfortable with JavaScript is more challenging than getting comfortable with HTML and CSS. You may have to start small, and progress gradually. To begin, let's examine how to add JavaScript to your page for creating a Hello world! example. (Hello world! is the standard for introductory programming examples.)

Warning: If you haven't been following along with the rest of our course, download this example code and use it as a starting point.

  1. Go to your test site and create a new folder named scripts. Within the scripts folder, create a new text document called main.js, and save it.
  2. In your index.html file, enter this code on a new line, just before the closing tag:
    <script src="scripts/main.js">script>
    
  3. This is doing the same job as the element for CSS. It applies the JavaScript to the page, so it can have an effect on the HTML (along with the CSS, and anything else on the page).
  4. Add this code to the main.js file:
    const myHeading = document.querySelector('h2');
    myHeading.textContent = 'Hello world!';
    
  5. Make sure the HTML and JavaScript files are saved. Then load index.html in your browser. You should see something like this:

Note: The reason the instructions (above) place the