WordPress jquery files not being enqueued

I dont really see anything wrong on what I did previously. But in any case I changed the name of the file to navbar.js and then my functions.php looked like this:

function scentology_scripts() {
    wp_enqueue_style( 'scentology-local-fonts', get_template_directory_uri() . '/fonts/raleway.css' );
    wp_enqueue_style( 'scentology-style-fontawesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css' ); 

    wp_enqueue_style( 'scentology-style', get_stylesheet_uri() ); 

    wp_enqueue_script( 'scentology-menu', get_template_directory_uri() . '/js/navbar.js', array('jquery'), '20151215', true);

    wp_enqueue_script( 'scentology-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '20151215', true );

//    wp_enqueue_script( 'scentology-style', get_template_directory_uri() . '/js/scrollspy.js', array(jquery), '20151215', true );

    wp_enqueue_script( 'scentology-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array('jquery'), '20151215', true );

    if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
     wp_enqueue_script( 'comment-reply' ); 
    }
}
add_action( 'wp_enqueue_scripts', 'scentology_scripts' );