Skip to content
View adhiansyahancha's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report adhiansyahancha

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. adhiansyahancha.github.io adhiansyahancha.github.io Public

    Situs web pribadi yang dibuat tanpa Jekyll

    HTML

  2. Penyandian sederhana dengan ROT13 Penyandian sederhana dengan ROT13
    1
    function rot13(str) {
    2
        let startRot = 'A'.charCodeAt();
    3
        let startRot2 = 'a'.charCodeAt();
    4
        let endRot = 'Z'.charCodeAt();
    5
        let endRot2 = 'z'.charCodeAt();
  3. Konversi bilangan desimal ke bilanga... Konversi bilangan desimal ke bilangan Romawi
    1
    function convertToRoman(num) {
    2
        let convertedNum = [];
    3
        let romanNumProperty = {
    4
            1: 'I',
    5
            4: 'IV',