This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installation of SSL Certificate | |
## Enable SSH : | |
ssh [email protected] -p 65002 | |
## Download acme-client | |
git clone https://github.com/kelunik/acme-client | |
## Change directory to acme client | |
cd acme-client |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// lets assume myObject is array of objects | |
let myObject = [ | |
{name:"a",ranking:4}, | |
{name:"b",ranking:6}, | |
{name:"c",ranking:5}, | |
{name:"d",ranking:3} | |
]; | |
// I am assumping all data is not validated before, | |
// hence checking for number |