Skip to content
View yaltha's full-sized avatar
🎨
Learn, learn, learn
🎨
Learn, learn, learn

Block or report yaltha

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. fob-calculation fob-calculation Public

    Calculate the charges of Import Goods money (FOB/free on board) tax in Indonesian Rupiah

    HTML

  2. Spread Operator - ES6 - JavaScript Spread Operator - ES6 - JavaScript
    1
    //So, spread operator (...) is mainly used to combine (concatenate) multiple arrays or objects in javascript.
    2
    //here are some arrays
    3
    const yearsOne = [2010,2015,2020,2025,2030];
    4
    const yearsTwo = [2013,2017,2022,2027,2032];
    5
    
                  
  3. Some ways to loop one or more arrays... Some ways to loop one or more arrays in JS
    1
    //given an array
    2
    const prices = [12, 50, 223, 59, 30]
    3
    
                  
    4
    //1. FOR , the old shcool way
    5
    for (let i = 0 ; i < prices.lenght ; i++) {
  4. portfolio.github.io portfolio.github.io Public

    CSS

  5. simple_form simple_form Public

    Forked from heartcombo/simple_form

    Forms made easy for Rails! It's tied to a simple DSL, with no opinion on markup.

    Ruby