RealPage interview question

write code to create a sample custom directive?

Interview Answer

Anonymous

May 25, 2018

var app = angular.module("myApp", []); app.directive("w3TestDirective", function() { return { template : "Made by a directive!" }; });