Typescript. Hello world

install typescript with

npm install -g typescript

or update if already been installed

npm update -g typescript

Now lets create some files…

index.html

<!DOCTYPE

Читать на сайте автора.

Algo. Anagrams

Is 2 strings are anagrams ? Decision through hash. Complexity O(n).

const s = ‘abc’; const s1 = ‘cba’; const s2 = ‘ac’; const s3

Читать на сайте автора.

Js. esLint + prettier

install eslint (source)

npm install eslint —save-dev

config

{ «plugins»: [ «prettier», ], «extends»: [ «prettier», ], «env»: { «es6»: true, «browser»: true }, rules:

Читать на сайте автора.

Js.React.Redux.CreateSlice

simplification of work with actions, reducers, etc…

Source

import { createSlice, createAction } from ‘@reduxjs/toolkit’ import { createStore, combineReducers } from ‘redux’ const incrementBy =

Читать на сайте автора.

JS.React. Change color of SVG icon

Source

Add the SVG image using an <img> tag. <img src=»dotted-arrow.svg» class=»filter-green»/> To filter to a specific color, use the following Codepen(Click Here to open codepen) to convert

Читать на сайте автора.

Html. Input with clear button

Input with clearButton

Читать на сайте автора.

JS.React.Counter on hooks

Source

And counter from Rei on his blog and the source code on github

Читать на сайте автора.

Js.Redux.Use {} for store rather than []

Source

Читать на сайте автора.