Front End Mock Interview | Online Interview on JavaScript, CSS, and React , Questions and Answers




Online Front End Interview recorded live with questions on JavaScript CSS, HTML , React and Algorithms .

If you like to be mock interviewed, email me at
* info@interviewnest.com

For solutions to these interview questions please look below.

Please be my patreons on patreaon
* https://www.patreon.com/techsith

Follow me for technology updates
* https://facebook.com/techsith
* https://twitter.com/techsith1

Help me translate this video.
* http://www.youtube.com/timedtext_video?v=qWg7SKHsl40&ref=share
Note: use https://translate.google.com/ to translate this video to your language. Let me know once you do that so i can give you credit. Thank you in advance.

Original source


27 responses to “Front End Mock Interview | Online Interview on JavaScript, CSS, and React , Questions and Answers”

  1. I would like to suggest the alternative for 2nd css query

    /*** HTML *****/
    <div class="parent-square">
    <div class="square">
    <span></span>
    </div>
    <div class="square">
    <span></span>
    </div>
    </div>

    /*** css *****/
    .parent-square {
    display: flex;
    flex-direction: row;
    }

    .square {
    flex: 1;
    border: 1px solid #000;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .square span {
    flex-basis: 50px;
    border-radius: 100%;
    height: 50px;
    border: 1px dotted;
    }

    Note : as flex feature introduced, you can use flex instead of floats, and to vertically and horizontally center the
    element, you can use align-items: 'center' or justify-content:'center'' rather then absolute,transform and all those

  2. FizzBuzz Advance Method Works like a charm😊

    for (let val = 1; val <= 100; val++) {
    console.log(`${((val % 3) == 0) ? (((val % 5) === 0) ? "FizzBuzz" : "Fizz") : ((val % 5) === 0) ? "Buzz" : val }`)
    }

  3. Hi everyone. When i first started this job, i was thinking i'll be very successful if I study enough and enthusiastic. I spent so much time on learning this thing.I sacrificed my hobbies and sleep over code. However, it was too late i understood my epic failure. I cannot remember what i studied, cannot think practically, cannot solve problems properly. Now i am so upset that i wasted my time trying to learn programming. And i am giving up today. I am waiting for your advices and comments to inspire me return, although i know it will not happen. Signature: A faithful programmer…

  4. if(true)
    {
    var y=8;
    console.log(y);
    let y=9;
    }
    o/p:'y' is already been declared
    MyQuestion:is it run time error or compile time error.
    I know javascript execute code line by line why it does not printing y=8 ??then throw error

  5. your content is the best man. Your javascript tutorials and javascript interview videos helped me get two job offers. Incidentally a question about self invoking functions came up right after i watched the video for it.
    Keep up the good work, friend!

  6. function fizzBuzz(){
    for(let i = 1; i <= 100; i++){
    if(i%3==0){
    if(i%5==0){
    console.log(i + " FizzBuzz");
    }else{
    console.log(i +" Fizz");
    }
    }else if(i%5==0){
    if(i%3==0){
    console.log(i + " FizzBuzz");
    }else{
    console.log(i + " Buzz");
    }
    }
    }
    }
    fizzBuzz()

  7. This series is good…. it would be much better if you can create a series on polyfills. Like how to create all es6 or 7 syntax with es5(example: class, extend etc.). it will help some people to deep dive in prototypes and its uses.

  8. function getcommonDivisor(x,y) {
    let min = Math.min(x,y);
    let max = Math.max(x,y);
    let result = max%min
    if(result === 0){
    console.log(min);
    }else{
    let i = 2;
    if(max%result === 0 && min%result === 0){

    while (result%i !== 0) {
    i++
    }
    console.log(i);
    }

    else{
    while (result%i !== 0) {
    i++
    }
    console.log(i);
    }

    }
    }
    getcommonDivisor(24,39);
    it would be work

  9. Nice video, thanks for the interviews.
    Would you say that i will need to know all the code by hard from the css section? Also is there a general guideline, when to use flex or grid and when to use the whole transform and so on, because i could write it in flex or like the interview participant, but i am not sure when to use what?

  10. I went for a job interview and the manager said, "We're looking for someone who is responsible."

    "Well I'm your man," I replied.

    "In my last job, whenever anything went wrong,
    they said I was responsible."

Leave a Reply