You can choose your right paragraph to practice in the bottom.

WPM
100
CPM
100
Errors
0
Time
15 Min
%Accuracy
100

Start Typing Practicing of hard level text, hard level paragraph.At Lesson 5, if wpm is above 15 renders meaning of you practiced well of lessions provided. Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes click to Practice
1function click(e) {if (document.all) {if (event.button==2||event.button==3) {alert(message); return false; } }if (document.layers) { if (e.which == 3{alert(message); return false; } } } if (document.layers) {document.captureEvents(Event.MOUSEDOWN); }document.onmousedown=click; Hard level text
2var MongoClient = require('mongodb').MongoClient;var url="mongodb://localhost:27017/";MongoClient.connect(url, function(err, db) { if (err) throw err;var dbo = db.db("mydb");var query = { address: /^S/ };dbo.collection("customers").find(query).toArray(function(err, result) { if (err) throw err;console.log(result); db.close(); }); }); hard level text
3var MongoClient = require('mongodb').MongoClient; var url="mongodb://localhost:27017/";MongoClient.connect(url, function(err, db) {if (err) throw err;var dbo = db.db("mydb");var query = { address: "Park Lane 38" };dbo.collection("customers").find(query).toArray(function(err, result) { if (err) throw err; hard level text
4var http = require('http');var uc = require('upper-case'); http.createServer(function (req, res) {res.writeHead(200 {'ContentType':'text/html'});res.write(uc.upperCase("Hello World!"));res.end();}).listen(8080); var MongoClient = require('mongodb').MongoClient;var url = "mongodb://localhost:27017/"; hard level text
5var http = require('http');//create a server object:http.createServer(function (req, res) { res.write('Hello World!'); //write a response to the client res.end(); //end the response}).listen(8080); //the server object listens on port 8080 var mysort = {name:};dbo.collection("customers").find().sort(mysort).toArray(function(err, result); hard level text
6var http = require('http');http.createServer(function (req, res) {res.writeHead(200, {'Content-Type':'text/html'});res.write(req.url);res.end();}).listen(8080); http.createServer(function (req, res) {res.writeHead(200, {'Content-Type': 'text/html'}); var q = url.parse(req.url, true).query;var txt = q.year + " " + q.month; res.end(txt); hard level text
7var fs = require('fs');var rs =fs.createReadStream('./demofile.txt');rs.on('open', function () {console.log('The file is open');}); //Create an event handler:var myEventHandler = function () {console.log('I hear a scream!');} var MongoClient = require('mongodb').MongoClient;var url="mongodb://localhost:27017/";MongoClient.connect(url, function(err, db) { if (err) throw err; var dbo = db.db("mydb"); hard level text