Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,154,007 members, 7,821,528 topics. Date: Wednesday, 08 May 2024 at 02:22 PM

Andela: IT Training And Job - Jobs/Vacancies (199) - Nairaland

Nairaland Forum / Nairaland / General / Jobs/Vacancies / Andela: IT Training And Job (622678 Views)

Letter To All Fresh Graduates and Job seekers / Andela: IT Training And Job - Jobs/vacancies / Similarities Between Football And Job (2) (3) (4)

(1) (2) (3) ... (196) (197) (198) (199) (200) (201) (202) ... (263) (Reply) (Go Down)

Re: Andela: IT Training And Job by princesweetman2(m): 9:31pm On Aug 17, 2018
stephenkhalaf:
JavaScript.info is for scholars. An average person cannot use that website. If you don't like programming, don't bother to go there. Just use w3schools.com

w3schools is easier

but javascript.info is not bad tho
Re: Andela: IT Training And Job by naijanoni(m): 9:46pm On Aug 17, 2018
DonPikko:
also Mozilla developers network site
MDN contains virtually everything about javascript.
Problem is javascript contains some things that are rarely used in real life. MDN doesnt seperate the essential ones and not too essential ones. So It might take you ages trying to cover everything on MDN.
Strings for example has about 40 methods all listed and explained (not very detailed) on MDN.

Why I like Javascript.info is it teaches the important things in details and always put a link to MDN and other sites for reference.

IMO its better for a beginner to use MDN as a reference not a major learning tool.
You could get frustrated trying cover everything there.
Re: Andela: IT Training And Job by Lagosian29(m): 9:46pm On Aug 17, 2018
sheygz:

i have a nodejs-express-mongodb-dev-to-deployment by brad traversy

c my signature for contact

cheers

1 Like

Re: Andela: IT Training And Job by DonPikko: 9:53pm On Aug 17, 2018
naijanoni:

MDN contains virtually everything about javascript.
Problem is javascript contains some things that are rarely used in real life. MDN doesnt seperate the essential ones and not too essential ones. So It might take you ages trying to cover everything on MDN.
Strings for example has about 40 methods all listed and explained (not very detailed) on MDN.

Why I like Javascript.info is it teaches the important things in details and always put a link to MDN and other sites for reference.

IMO its better for a beginner to use MDN as a reference not a major learning tool.
You could get frustrated trying cover everything there.
mdn is my Bible, I use it to refresh what I know, and to understand concepts better

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 9:58pm On Aug 17, 2018
DonPikko:
mdn is my Bible, I use it to refresh what I know, and to understand concepts better

MDN is my mother

Scotch, Digital Ocean are my siblings

w3school is my neighbour

YouTube is my galfriend as we go straight into practice wink

1 Like

Re: Andela: IT Training And Job by guente02(m): 10:03pm On Aug 17, 2018
DonPikko:
oh, for the REST, I learnt how to build via a course on udemy, mosh hamedanni node Js course
Same as me.
The guy and brad na my go to guy for all things js.
You have his full nodejs course?
Re: Andela: IT Training And Job by DonPikko: 10:05pm On Aug 17, 2018
guente02:

Same as me.
The guy and brad na my go to guy for all things js.
You have his full nodejs course?
yeah I do, I have about 5 node Js courses, then about 3 node with react courses
Re: Andela: IT Training And Job by Solomon27(m): 10:55pm On Aug 17, 2018
Lagosian29:


U can SCALE thru if u were to take its measurement tongue

see my SIGNATURE to SAIL thru d homestudy assessment by subbing to MODERN JAVASCRIPT by BRAD TRAVERSY


How can I get the book?
Re: Andela: IT Training And Job by Lagosian29(m): 10:58pm On Aug 17, 2018
Solomon27:


How can I get the book?

VIDEO NOT BOOK

C MY SIGNATURE FOR CONTACT

CHEERS
Re: Andela: IT Training And Job by Solomon27(m): 2:45am On Aug 18, 2018
http://javascript.info seems cool though

1 Like

Re: Andela: IT Training And Job by Solomon27(m): 2:56am On Aug 18, 2018
Re: Andela: IT Training And Job by Lagosian29(m): 4:34am On Aug 18, 2018
Solomon27:

Gud 4 u den
Re: Andela: IT Training And Job by assurancefemi: 3:44am On Aug 19, 2018
Please How doi get to


Andela’s EPIC Tower,

235, Ikorodu Road,

Ilupeju,


From Cele
Re: Andela: IT Training And Job by princesweetman2(m): 6:43am On Aug 19, 2018
assurancefemi:
Please How doi get to


Andela’s EPIC Tower,

235, Ikorodu Road,

Ilupeju,


From Cele

1. enter a bus going towards palmgrove drop at mutual benefits assurance ask of andela

2. enter mile2, oshodi, yaba or ojuelegba do 1
Re: Andela: IT Training And Job by princesweetman2(m): 6:46am On Aug 19, 2018
Cc DonPikko Guente02 Benfluleck

according to w3schools
var str = " Hello World! ";
alert(str.trim()); // Hello World!
removes white spaces before and after

NOW

how do u remove white spaces in between strings. see below

var str = " H e l l o World! ";
alert(str.trim()); // H e l l o World!

regex didnt treat d issue either
Re: Andela: IT Training And Job by Teletexter: 7:55am On Aug 19, 2018
princesweetman2:
Cc DonPikko Guente02 Benfluleck

according to w3schools
var str = " Hello World! ";
alert(str.trim()); // Hello World!
removes white spaces before and after

NOW

how do u remove white spaces in between strings. see below

var str = " H e l l o World! ";
alert(str.trim()); // H e l l o World!

regex didnt treat d issue either

str.replace(/[“ “]/g, “”);

Although this removes all spaces in the string. Including the one between “Hello” and “World”.
Re: Andela: IT Training And Job by princesweetman2(m): 8:47am On Aug 19, 2018
https://codepen.io/soyedotun/full/MBLdrj/

Cc benfluleck guente02 Donpikko haywhyze teletexter Thevenine FunkyPunky

1. test for no input
2. input only string one
3. input only string two
4. test for unequal length of strings
5. test "foo" and "bar" | "egg" and "add" | "paper" and "title" strings

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 8:47am On Aug 19, 2018
Teletexter:

str.replace(/[“ “]/g, “”);

Thanks Boss

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 9:27am On Aug 19, 2018
Ucheka Chike

U R D Man

wink

1 Like

Re: Andela: IT Training And Job by DonPikko: 10:09am On Aug 19, 2018
princesweetman2:
Cc DonPikko Guente02 Benfluleck

according to w3schools
var str = " Hello World! ";
alert(str.trim()); // Hello World!
removes white spaces before and after

NOW

how do u remove white spaces in between strings. see below

var str = " H e l l o World! ";
alert(str.trim()); // H e l l o World!

regex didnt treat d issue either
you need to handle the first item separately, to remove the space
Re: Andela: IT Training And Job by DonPikko: 10:10am On Aug 19, 2018
princesweetman2:


MDN is my mother

Scotch, Digital Ocean are my siblings

w3school is my neighbour

YouTube is my galfriend as we go straight into practice wink
i don't fancy youtube at all, following youtube tutorials can misguide a beginner

4 Likes

Re: Andela: IT Training And Job by assurancefemi: 10:26am On Aug 19, 2018
princesweetman2:


1. enter a bus going towards palmgrove drop at mutual benefits assurance ask of andela

2. enter mile2, oshodi, yaba or ojuelegba do 1


From Oshodi, which bus will I board

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 10:40am On Aug 19, 2018
assurancefemi:

From Oshodi, which bus will I board

Enter maruwa going to ilupeju

Don't try to walk it - napep guy fit tell u say make u walk am.

Climb d pedestrian bridge 2d oda side

Enter N50 going Ikeja bus drop at mutual benefits

3 Likes

Re: Andela: IT Training And Job by 2O17: 1:27pm On Aug 19, 2018
princesweetman2:
Cc .onPikko G.uente02 Benfl.uleck

according to w3schools
var str = " Hello World! ";
alert(str.trim()); // Hello World!
removes white spaces before and after

NOW

how do u remove white spaces in between strings. see below

var str = " H e l l o World! ";
alert(str.trim()); // H e l l o World!

regex didnt treat d issue either
try this
str.replace(/[ ]/g, '')

1 Like

Re: Andela: IT Training And Job by princesweetman2(m): 2:25pm On Aug 19, 2018
2O17:

try this
str.replace(/[ ]/g, '')

Thanks

1 Like

Re: Andela: IT Training And Job by Boxer007(m): 5:02pm On Aug 19, 2018
haywhyze:

Best of luck bro...
Thanks for sharing.


Hi sexy boy. May I hug u?
Re: Andela: IT Training And Job by princesweetman2(m): 6:00pm On Aug 19, 2018
HBD YUSUF ABDULKARIM aka HAYWHYZE

2 Likes

Re: Andela: IT Training And Job by haywhyze(m): 7:14pm On Aug 19, 2018
princesweetman2:
HBD YUSUF ABDULKARIM aka HAYWHYZE

Thanks bro.
Re: Andela: IT Training And Job by haywhyze(m): 7:15pm On Aug 19, 2018
Boxer007:



Hi sexy boy. May I hug u?

shocked undecided
Re: Andela: IT Training And Job by princesweetman2(m): 7:31pm On Aug 19, 2018
haywhyze:


Thanks bro.

Check ur mail bro
Re: Andela: IT Training And Job by fxdrizzle(m): 9:43pm On Aug 19, 2018
To whom it may concern
Cycle 38 application has begun.

4 Likes

Re: Andela: IT Training And Job by princesweetman2(m): 6:41am On Aug 20, 2018
fxdrizzle:
To whom it may concern
Cycle 38 application has begun.

Yh saw dat too.

(1) (2) (3) ... (196) (197) (198) (199) (200) (201) (202) ... (263) (Reply)

How To Apply For Nigeria Immigration Service (NIS) Recruitment 2017 / Federal Road Safety Commission 2018 Recruitment: How To Apply / FIRS To Recruit 1,250 New Staff

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 29
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.