No Image

Coding Basic

August 7, 2017 hung-nb 0

Coding templates Template 1 Get/ Validate/ Do/ Return Example [js] function test { var elms = document.getElementsByTagName(‘table’); for (var i = 0; i < elms.length; i++){ […]

No Image

ReactJS

July 11, 2017 hung-nb 0

What is JSX? JSX is faster than Javascipt How to use Javascript in JSX? Put Javascript code inside the braces [js] <pre>class Square extends React.Component […]

No Image

Create first application with reactJS

July 11, 2017 hung-nb 0

Installation Install ‘NodeJS’ http://114.76.92.194:8081/myblog/2017/06/20/node-js/ Install ReactJS [js]npm install -g create-react-app create-react-app my-app cd my-app npm start[/js]

No Image

node.js

June 20, 2017 hung-nb 1

Windows installation Install “msi” file from node js website Create “hello.js” file [js]console.log(‘Hello World’);[/js] Open Windows command prompt [js]node hello.js[/js]