Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 389 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 389 Bytes

priscajs

Priscajs is a JavaScript library that intends to achieve a lot with few lines of codes.

Demonstration

    //`i` represents the current iteration value.
    from (1 to 10) {
        say (i)
    }

The following block is an example for loop equivalent of the above code in Vanilla JavaScript

    for (var i = 1; i <= 10; i++) {
        alert (i);
    }