.: bármilyen karakter\s: üres hely karakter (space, tab, új sor)\d: számjegy\w: alfanumerikus karakter (angol ABC kis- és nagybetűi, számjegyek és_)\p{L}: mint a\w, de Unicode (ékezetes) karakter is lehet\S: bármilyen karakter, ami nem üres hely
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
| // The most common elementary algorithms in JavaScript | |
| 'use strict'; | |
| const testNumbers = [8, 6, 3, 7, 3, 8, 4, 4, 9, 1, 2, 8]; | |
| // 1. Search | |
| function contains(array, elemToFind) { | |
| for (let i = 0; i < array.length; i++) { | |
| if (array[i] === elemToFind) { |
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
| // https://gist.github.com/szemate/537792a6cf39008d51192fc8a3034d9a | |
| const toppings = [ | |
| 'ham', | |
| 'salami', | |
| 'mushroom', | |
| 'spinach', | |
| 'artichoke', | |
| ]; |
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
| import { | |
| ChainIds, | |
| createOrderERC20, | |
| createOrderERC20Signature, | |
| OrderERC20 | |
| } from '@airswap/utils'; | |
| import { Server } from '@airswap/libraries'; | |
| const signer = process.env.PRIVATE_KEY; | |
| const signerWallet = '0x455777268Bd43C983ba82D9DE4efa0445af99D96'; |
OlderNewer