I have some doubts on my code. The code below is my code.
import {JwtHelperService} from '@auth0/angular-jwt';
angular.module("appFoco", []).controller("LoginFormPDF", ['$scope', '$location', '$http', function($scope, $location, $http) {
const helper = new JwtHelperService();
console.log($scope);}])
And I want to fix this error => Uncaught SyntaxError: Unexpected token {
I am developing with angular and jwt and Nodejs. How I can fix this? Thanks